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

拜访信息,订单信息

parent 18fc74c9
This diff is collapsed.
This diff is collapsed.
......@@ -130,7 +130,7 @@
@pagination="getList"
/>
<!-- 添加或修改【请填写功能名称】对话框 -->
<!-- 添加或修改订单信息对话框 -->
<el-dialog :title="title" :visible.sync="open" width="960px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-row>
......@@ -274,7 +274,7 @@
// 表单重置
reset() {
this.form = {
brandOrderQuantityId: null, brandId: null, time: null, region: null, orderQuantity: null, enableFlag: null, remark: null, createBy: null, createTime: null, updateBy: null, updateTime: null };
brandOrderQuantityId: null, brandId: null, brandName: null , time: null, region: null, orderQuantity: null, enableFlag: null, remark: null, createBy: null, createTime: null, updateBy: null, updateTime: null };
this.resetForm("form");
},
/** 搜索按钮操作 */
......@@ -297,7 +297,7 @@
handleAdd() {
this.reset();
this.open = true;
this.title = "添加【请填写功能名称】";
this.title = "添加订单量信息";
},
/** 修改按钮操作 */
handleUpdate(row) {
......
......@@ -296,7 +296,7 @@ export default {
// 表单重置
reset() {
this.form = {
brandVisitId: null, brandId: null, contactName: null, visitPerson: null, visitTime: null, visitSummary: null, enableFlag: null, remark: null, createBy: null, createTime: null, updateBy: null, updateTime: null };
brandVisitId: null, brandId: null, brandName:null, contactName: null, visitPerson: null, visitTime: null, visitSummary: null, enableFlag: null, remark: null, createBy: null, createTime: null, updateBy: null, updateTime: null };
this.resetForm("form");
},
/** 搜索按钮操作 */
......@@ -319,7 +319,7 @@ export default {
handleAdd() {
this.reset();
this.open = true;
this.title = "添加【请填写功能名称】";
this.title = "添加品牌访问信息";
this.optType = "add";
},
/** 修改按钮操作 */
......@@ -329,7 +329,7 @@ export default {
getVisit(brandVisitId).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改【请填写功能名称】";
this.title = "修改品牌访问信息";
this.optType = "edit";
});
},
......@@ -357,7 +357,7 @@ export default {
/** 删除按钮操作 */
handleDelete(row) {
const brandVisitIds = row.brandVisitId || this.ids;
this.$modal.confirm('是否确认删除【请填写功能名称】编号为"' + brandVisitIds + '"的数据项?').then(function() {
this.$modal.confirm('是否确认删除品牌访问编号为"' + brandVisitIds + '"的数据项?').then(function() {
return delVisit(brandVisitIds);
}).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