Commit ca67f1ab authored by 全洪江's avatar 全洪江

修改关联客户标题

parent 6ab9809a
......@@ -38,8 +38,8 @@
<el-table v-loading="loading" :data="relationList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55"/>
<el-table-column label="支付方客户编码" prop="relatedCode"/>
<el-table-column label="支付方客户名称" prop="relatedName"/>
<el-table-column label="关联客户编码" prop="relatedCode"/>
<el-table-column label="关联客户名称" prop="relatedName"/>
<el-table-column label="操作" class-name="small-padding fixed-width" width="120">
<template slot-scope="scope">
<el-button
......@@ -181,7 +181,7 @@ export default {
handleAdd() {
this.reset();
this.open = true;
this.title = "添加客户付款信息关联";
this.title = "添加客户关联关系";
},
/** 修改按钮操作 */
handleUpdate(row) {
......@@ -190,7 +190,7 @@ export default {
getRelation(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改客户付款信息关联";
this.title = "修改客户关联关系";
});
},
/** 提交按钮 */
......@@ -217,7 +217,7 @@ export default {
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除客户付款信息关联编号为"' + ids + '"的数据项?').then(function () {
this.$modal.confirm('是否确认删除关联客户编号为"' + ids + '"的数据项?').then(function () {
return delRelation(ids);
}).then(() => {
this.getList();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment