作者 张晓杰

删除咨询新增

... ... @@ -16,7 +16,7 @@
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<!-- <el-col :span="1.5">
<el-button
type="primary"
plain
... ... @@ -25,8 +25,8 @@
@click="handleAdd"
v-hasPermi="['system:reply:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
</el-col>-->
<!-- <el-col :span="1.5">
<el-button
type="success"
plain
... ... @@ -36,7 +36,7 @@
@click="handleUpdate"
v-hasPermi="['system:reply:edit']"
>修改</el-button>
</el-col>
</el-col> -->
<el-col :span="1.5">
<el-button
type="danger"
... ... @@ -86,7 +86,7 @@
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['system:reply:edit']"
>修改</el-button>
>回复</el-button>
<el-button
size="mini"
type="text"
... ... @@ -270,7 +270,7 @@ export default {
this.loading = false;
this.form = response.data;
this.open = true;
this.title = "修改";
this.title = "回复";
});
},
/** 提交按钮 */
... ...
... ... @@ -118,7 +118,15 @@
align="center"
prop="contractAmount"
width="100"
/>
>
<template slot-scope="scope">
<el-button
type="text"
size="mini"
@click="handleContractAmount(scope.row)"
>{{scope.row.contractAmount}}</el-button
>
</template></el-table-column>
<el-table-column
label="生效日期"
align="center"
... ... @@ -373,6 +381,13 @@
<el-button @click="cancelEvaluate">取 消</el-button>
</div>
</el-dialog>
<el-dialog :title="title" :visible.sync="showContractAmount" width="500px">
<el-table :data="ContractAmountList" >
<el-table-column prop="amountDate" label="日期" ></el-table-column>
<el-table-column prop="amount" label="已付/已收金额(元)" >
</el-table-column>
</el-table>
</el-dialog>
</div>
</template>
... ... @@ -393,6 +408,12 @@ export default {
},
data() {
return {
ContractAmountList:[
{amountDate:'2024-07-05',
amount:'100'},{amountDate:'2024-07-10',
amount:'100'}
],
showContractAmount:false,
tableData: [{
content: '合同规范性',
description: '',
... ... @@ -508,6 +529,11 @@ export default {
this.getList();
},
methods: {
handleContractAmount(row){
this.showContractAmount = true
this.title = '进度'
},
// 更多操作触发
handleCommand(command, row) {
switch (command) {
... ...