作者 张晓杰

删除咨询新增

@@ -16,7 +16,7 @@ @@ -16,7 +16,7 @@
16 </el-form> 16 </el-form>
17 17
18 <el-row :gutter="10" class="mb8"> 18 <el-row :gutter="10" class="mb8">
19 - <el-col :span="1.5"> 19 + <!-- <el-col :span="1.5">
20 <el-button 20 <el-button
21 type="primary" 21 type="primary"
22 plain 22 plain
@@ -25,8 +25,8 @@ @@ -25,8 +25,8 @@
25 @click="handleAdd" 25 @click="handleAdd"
26 v-hasPermi="['system:reply:add']" 26 v-hasPermi="['system:reply:add']"
27 >新增</el-button> 27 >新增</el-button>
28 - </el-col>  
29 - <el-col :span="1.5"> 28 + </el-col>-->
  29 + <!-- <el-col :span="1.5">
30 <el-button 30 <el-button
31 type="success" 31 type="success"
32 plain 32 plain
@@ -36,7 +36,7 @@ @@ -36,7 +36,7 @@
36 @click="handleUpdate" 36 @click="handleUpdate"
37 v-hasPermi="['system:reply:edit']" 37 v-hasPermi="['system:reply:edit']"
38 >修改</el-button> 38 >修改</el-button>
39 - </el-col> 39 + </el-col> -->
40 <el-col :span="1.5"> 40 <el-col :span="1.5">
41 <el-button 41 <el-button
42 type="danger" 42 type="danger"
@@ -86,7 +86,7 @@ @@ -86,7 +86,7 @@
86 icon="el-icon-edit" 86 icon="el-icon-edit"
87 @click="handleUpdate(scope.row)" 87 @click="handleUpdate(scope.row)"
88 v-hasPermi="['system:reply:edit']" 88 v-hasPermi="['system:reply:edit']"
89 - >修改</el-button> 89 + >回复</el-button>
90 <el-button 90 <el-button
91 size="mini" 91 size="mini"
92 type="text" 92 type="text"
@@ -270,7 +270,7 @@ export default { @@ -270,7 +270,7 @@ export default {
270 this.loading = false; 270 this.loading = false;
271 this.form = response.data; 271 this.form = response.data;
272 this.open = true; 272 this.open = true;
273 - this.title = "修改"; 273 + this.title = "回复";
274 }); 274 });
275 }, 275 },
276 /** 提交按钮 */ 276 /** 提交按钮 */
@@ -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) {