| | |
| | | { label: "职务", prop: "position", min: 120 }, // 职务 |
| | | { label: "手机", prop: "phone", min: 100 }, // 手机号码 |
| | | { label: "销售负责人", prop: "member_name", min: 120 }, // 销售负责人 |
| | | { label: "首要联系人", prop: "is_first", min: 90 } // 首要联系人 |
| | | { label: "首要联系人", prop: "is_first", isFirst: true, min: 90 } // 首要联系人 |
| | | ] |
| | | } |
| | | this.searchOptions = [] |
| | |
| | | return { |
| | | ...item, |
| | | client_name: item.Client.name, |
| | | is_first: item.is_first ? "是" : "否", |
| | | client_id: item.Client.id, |
| | | member_name: item.member.username |
| | | } |
| | |
| | | }, |
| | | // 客户名称详情 |
| | | selClientClick(row) { |
| | | // console.log(row) |
| | | console.log(row) |
| | | this.clientDeail.visible = true |
| | | this.clientDeail.infomation = { |
| | | ...row.Client, |