|
@@ -118,7 +118,15 @@ |
|
@@ -118,7 +118,15 @@ |
|
118
|
align="center"
|
118
|
align="center"
|
|
119
|
prop="contractAmount"
|
119
|
prop="contractAmount"
|
|
120
|
width="100"
|
120
|
width="100"
|
|
121
|
- />
|
121
|
+ >
|
|
|
|
122
|
+ <template slot-scope="scope">
|
|
|
|
123
|
+ <el-button
|
|
|
|
124
|
+ type="text"
|
|
|
|
125
|
+ size="mini"
|
|
|
|
126
|
+ @click="handleContractAmount(scope.row)"
|
|
|
|
127
|
+ >{{scope.row.contractAmount}}</el-button
|
|
|
|
128
|
+ >
|
|
|
|
129
|
+ </template></el-table-column>
|
|
122
|
<el-table-column
|
130
|
<el-table-column
|
|
123
|
label="生效日期"
|
131
|
label="生效日期"
|
|
124
|
align="center"
|
132
|
align="center"
|
|
@@ -373,6 +381,13 @@ |
|
@@ -373,6 +381,13 @@ |
|
373
|
<el-button @click="cancelEvaluate">取 消</el-button>
|
381
|
<el-button @click="cancelEvaluate">取 消</el-button>
|
|
374
|
</div>
|
382
|
</div>
|
|
375
|
</el-dialog>
|
383
|
</el-dialog>
|
|
|
|
384
|
+ <el-dialog :title="title" :visible.sync="showContractAmount" width="500px">
|
|
|
|
385
|
+ <el-table :data="ContractAmountList" >
|
|
|
|
386
|
+ <el-table-column prop="amountDate" label="日期" ></el-table-column>
|
|
|
|
387
|
+ <el-table-column prop="amount" label="已付/已收金额(元)" >
|
|
|
|
388
|
+ </el-table-column>
|
|
|
|
389
|
+ </el-table>
|
|
|
|
390
|
+ </el-dialog>
|
|
376
|
</div>
|
391
|
</div>
|
|
377
|
</template>
|
392
|
</template>
|
|
378
|
|
393
|
|
|
@@ -393,6 +408,12 @@ export default { |
|
@@ -393,6 +408,12 @@ export default { |
|
393
|
},
|
408
|
},
|
|
394
|
data() {
|
409
|
data() {
|
|
395
|
return {
|
410
|
return {
|
|
|
|
411
|
+ ContractAmountList:[
|
|
|
|
412
|
+ {amountDate:'2024-07-05',
|
|
|
|
413
|
+ amount:'100'},{amountDate:'2024-07-10',
|
|
|
|
414
|
+ amount:'100'}
|
|
|
|
415
|
+ ],
|
|
|
|
416
|
+ showContractAmount:false,
|
|
396
|
tableData: [{
|
417
|
tableData: [{
|
|
397
|
content: '合同规范性',
|
418
|
content: '合同规范性',
|
|
398
|
description: '',
|
419
|
description: '',
|
|
@@ -508,6 +529,11 @@ export default { |
|
@@ -508,6 +529,11 @@ export default { |
|
508
|
this.getList();
|
529
|
this.getList();
|
|
509
|
},
|
530
|
},
|
|
510
|
methods: {
|
531
|
methods: {
|
|
|
|
532
|
+ handleContractAmount(row){
|
|
|
|
533
|
+ this.showContractAmount = true
|
|
|
|
534
|
+ this.title = '进度'
|
|
|
|
535
|
+
|
|
|
|
536
|
+ },
|
|
511
|
// 更多操作触发
|
537
|
// 更多操作触发
|
|
512
|
handleCommand(command, row) {
|
538
|
handleCommand(command, row) {
|
|
513
|
switch (command) {
|
539
|
switch (command) {
|