| | |
| | | getAllData() |
| | | .then((res) => { |
| | | this.memberOptions = res.data.member |
| | | this.dataProcess() |
| | | // this.dataProcess() |
| | | }) |
| | | .catch((err) => { |
| | | console.log(err) |
| | |
| | | } |
| | | } |
| | | }, |
| | | async handleSelectClient(value, item) { |
| | | // 销售机会列表 |
| | | async getSaleChanceList(item) { |
| | | await getSaleChanceList({ |
| | | page: 1, |
| | | pageSize: 15, |
| | | search_map: { |
| | | client_id: item.id |
| | | } |
| | | }).then((res) => { |
| | | console.log(res) |
| | | this.saleChancelist = res.data.list |
| | | }) |
| | | }, |
| | | // 销售子单列表 |
| | | async getSubOrderList(item) { |
| | | await getSubOrderList({ |
| | | page: 1, |
| | | pageSize: 15, |
| | | search_map: { |
| | | client_id: item.id |
| | | } |
| | | }).then((res) => { |
| | | this.subOrderList = res.data.list |
| | | }) |
| | | }, |
| | | handleSelectClient(value, item) { |
| | | if (value === "client") { |
| | | this.clientId = item.id |
| | | this.editConfig.infomation.client_name = item.name |
| | | // 需要修改 |
| | | await getSaleChanceList({ |
| | | page: 1, |
| | | pageSize: 15, |
| | | search_map: { |
| | | client_id: item.id |
| | | } |
| | | }).then((res) => { |
| | | console.log(res) |
| | | this.saleChancelist = res.data.list |
| | | }) |
| | | await getSubOrderList({ |
| | | page: 1, |
| | | pageSize: 15, |
| | | search_map: { |
| | | client_id: item.id |
| | | } |
| | | }).then((res) => { |
| | | this.subOrderList = res.data.list |
| | | }) |
| | | this.getSaleChanceList(item) |
| | | this.getSubOrderList(item) |
| | | } else if (value === "chance") { |
| | | this.saleChanceId = item.id |
| | | this.editConfig.infomation.client_name = item.name |
| | |
| | | if (value === "client") { |
| | | this.editConfig.infomation.client_name = row.name |
| | | this.clientId = row.id |
| | | this.getSaleChanceList(row) |
| | | this.getSubOrderList(row) |
| | | } else if (value === "chance") { |
| | | this.editConfig.infomation.sale_chance_name = row.name |
| | | this.saleChanceId = row.id |