|
@@ -12,7 +12,7 @@
|
|
|
<div>
|
|
|
<el-tabs v-model="activeName" @tab-click="handleClick">
|
|
|
<el-tab-pane label="待分解" name="second">
|
|
|
- <dilTable v-bind.sync="second" ref="table1">
|
|
|
+ <mergeRowTable v-bind.sync="second" ref="table1">
|
|
|
<el-table-column fixed="right" label="操作" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
@@ -24,10 +24,10 @@
|
|
|
</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- </dilTable>
|
|
|
+ </mergeRowTable>
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="已分解" name="third">
|
|
|
- <dilTable v-bind.sync="third" ref="table2">
|
|
|
+ <mergeRowTable v-bind.sync="third" ref="table2">
|
|
|
<el-table-column fixed="right" label="操作" width="180">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
@@ -76,11 +76,11 @@
|
|
|
</el-form>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- </dilTable>
|
|
|
+ </mergeRowTable>
|
|
|
</el-tab-pane>
|
|
|
|
|
|
<el-tab-pane label="已完成" name="four">
|
|
|
- <dilTable v-bind.sync="four" ref="table3"> </dilTable>
|
|
|
+ <mergeRowTable v-bind.sync="four" ref="table3"> </mergeRowTable>
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
</div>
|
|
@@ -95,14 +95,20 @@ export default {
|
|
|
inputText: "",
|
|
|
carrierId: 40,
|
|
|
first: {
|
|
|
+ columnIndexs:[0,1,2,3,4,5,9.10,21,22],
|
|
|
+ comparison: "requirementNumber",
|
|
|
// first请求数据的地址
|
|
|
requestUrl: ""
|
|
|
},
|
|
|
second: {
|
|
|
+ columnIndexs:[0,1,2,3,4,5,9.10,21,22],
|
|
|
+ comparison: "requirementNumber",
|
|
|
// second请求数据的地址
|
|
|
requestUrl: ""
|
|
|
},
|
|
|
third: {
|
|
|
+ columnIndexs:[0,1,2,3,4,5,9.10,21,22],
|
|
|
+ comparison: "requirementNumber",
|
|
|
// second请求数据的地址
|
|
|
requestUrl: ""
|
|
|
},
|