|
@@ -5,7 +5,7 @@
|
|
|
<el-form :model="form" ref="tableForm" class="tableForm" :rules="tableFormRules">
|
|
<el-form :model="form" ref="tableForm" class="tableForm" :rules="tableFormRules">
|
|
|
<el-button type="primary" size="small" style="margin-bottom: 10px" @click="handleAdd()" v-if="!isDetails">新增</el-button>
|
|
<el-button type="primary" size="small" style="margin-bottom: 10px" @click="handleAdd()" v-if="!isDetails">新增</el-button>
|
|
|
|
|
|
|
|
- <span> 委外总数: {{ formedNumLast }}</span>
|
|
|
|
|
|
|
+ <span> 委外总数: {{ totalCount }}</span>
|
|
|
|
|
|
|
|
<el-table ref="multipleTable" :data="form.timeList" tooltip-effect="dark" style="width: 100%" stripe
|
|
<el-table ref="multipleTable" :data="form.timeList" tooltip-effect="dark" style="width: 100%" stripe
|
|
|
:header-cell-style="{ background: '#EEEEEE', border: 'none' }">
|
|
:header-cell-style="{ background: '#EEEEEE', border: 'none' }">
|
|
@@ -96,7 +96,7 @@ export default {
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
- formedNumLast: 0,
|
|
|
|
|
|
|
+ totalCount: 0,
|
|
|
isDetails: false
|
|
isDetails: false
|
|
|
|
|
|
|
|
|
|
|
|
@@ -114,7 +114,7 @@ export default {
|
|
|
|
|
|
|
|
open(row, type) {
|
|
open(row, type) {
|
|
|
|
|
|
|
|
- this.formedNumLast = row.formedNumLast
|
|
|
|
|
|
|
+ this.totalCount = row.totalCount
|
|
|
this.form.timeList = []
|
|
this.form.timeList = []
|
|
|
|
|
|
|
|
this.visible = true
|
|
this.visible = true
|