Commit e7469dba authored by zhengyi's avatar zhengyi

我的客户列表跟进页面bug修复

parent d2ee55fd
...@@ -648,7 +648,7 @@ ...@@ -648,7 +648,7 @@
> >
<el-button <el-button
size="mini" size="mini"
v-hasPermi="['ecw:customer:my-follow-up']" v-has-permi="[selectAuthorityFn('ecw:customer:my-follow-up')]"
type="text" type="text"
icon="el-icon-collection" icon="el-icon-collection"
@click="followUp(scope.row)" @click="followUp(scope.row)"
...@@ -755,7 +755,7 @@ import { getCustomerSelect, changeCustomerDefaultPay, changeCustomerNoConsignee, ...@@ -755,7 +755,7 @@ import { getCustomerSelect, changeCustomerDefaultPay, changeCustomerNoConsignee,
import { getProductTypeList } from "@/api/ecw/productType"; import { getProductTypeList } from "@/api/ecw/productType";
import { getProductList } from "@/api/ecw/product"; import { getProductList } from "@/api/ecw/product";
export default { export default {
name: "EcwMycustomerserviceIndex", name: "EcwMyCustomerServiceIndex",
components: { components: {
Contacts, Contacts,
Template, Template,
...@@ -1224,14 +1224,14 @@ export default { ...@@ -1224,14 +1224,14 @@ export default {
.catch(() => {}); .catch(() => {});
}, },
followUp(row) { followUp(row) {
this.customerId = row.id; this.customerId = row.id
// this.$refs["customerFollowList"].customerFollow.dialogVisible = true; this.customerService = row.customerService
this.customerService = row.customerService; this.customerNumber = row.number
this.customerNumber = row.number;
this.customerFollowVisible = true this.customerFollowVisible = true
this.$nextTick(_ => { this.$nextTick(_ => {
this.$refs['customerFollowList'].init() // this.$refs.CustomerFollowList.customerFollow.dialogVisible = true;
this.$refs['customerFollowList'].handleAdd() this.$refs['CustomerFollowList'].init()
this.$refs['CustomerFollowList'].handleAdd()
}) })
}, },
complaint(row) { complaint(row) {
......
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