| | |
| | | > |
| | | <template slot="leftButton"> |
| | | <el-button size="small" type="primary" @click="addBtnClick">新建</el-button> |
| | | <el-button size="small" @click="delClick">删除</el-button> |
| | | <!-- <el-button size="small" @click="delClick">删除</el-button> --> |
| | | </template> |
| | | |
| | | </CommonSearch> |
| | |
| | | :table-list="tableList" |
| | | @selSalesLeadClick="selSalesLeadClick" |
| | | @getSelectArray="getSelectArray" |
| | | @selTableCol="selTableCol" |
| | | > |
| | | <template slot="tableButton"> |
| | | <el-table-column label="操作" width="120"> |
| | | <el-table-column label="操作" width="150"> |
| | | <template slot-scope="scope"> |
| | | <el-button @click="handleClick(scope.row)" type="text" size="small">编辑</el-button> |
| | | <el-button @click="followupClick(scope.row)" type="text" size="small">跟进</el-button> |
| | | <!-- <el-button @click="followupClick(scope.row)" type="text" size="small">跟进</el-button> --> |
| | | <el-button @click="advanceClick(scope.row)" type="text" size="small">推进</el-button> |
| | | <!-- <el-button @click="delClick(scope.row.id)" type="text" size="small">删除</el-button> --> |
| | | <el-button @click="delClick(scope.row.id)" type="text" size="small">删除</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </template> |
| | |
| | | // 分配 |
| | | visible: false, |
| | | infomation: {} |
| | | } |
| | | }, |
| | | tableColumn:[ |
| | | { label: "客户名称", prop: "name", min: 190, isSalesLeadClick: true ,default:true}, // 客户名称 |
| | | { label: "销售线索编号", prop: "number", min: 130 }, // 销售线索编号 |
| | | { label: "联系人姓名", prop: "contact_name", min: 130 }, // 联系人姓名 |
| | | { label: "手机号码", prop: "contact_phone", min: 130 }, // 手机号码 |
| | | { label: "商机来源", prop: "sales_resources", min: 130 }, // 商机来源 |
| | | { label: "省份", prop: "province", min: 130 }, // 省份 |
| | | { label: "城市", prop: "city", min: 130 }, // 城市 |
| | | { label: "负责人", prop: "member_name", min: 130 } // 负责人 |
| | | ], |
| | | showCol:["客户名称","销售线索编号","联系人姓名","手机号码","商机来源","省份","城市","负责人"] |
| | | } |
| | | }, |
| | | created() { |
| | |
| | | methods: { |
| | | setTable() { |
| | | this.tableList = { |
| | | selectIndex: true, |
| | | tableInfomation: [], |
| | | tableColumn: [ |
| | | { label: "客户名称", prop: "name", min: 190, isSalesLeadClick: true }, // 客户名称 |
| | | { label: "销售线索编号", prop: "number", min: 130 }, // 销售线索编号 |
| | | { label: "联系人姓名", prop: "contact_name", min: 130 }, // 联系人姓名 |
| | | { label: "手机号码", prop: "contact_phone", min: 130 }, // 手机号码 |
| | | { label: "商机来源", prop: "sales_resources", min: 130 }, // 商机来源 |
| | | { label: "省份", prop: "province", min: 130 }, // 省份 |
| | | { label: "城市", prop: "city", min: 130 }, // 城市 |
| | | { label: "负责人", prop: "member_name", min: 130 } // 负责人 |
| | | ] |
| | | allcol: [], |
| | | showcol: this.showCol, |
| | | tableColumn:this.setColumnVisible(this.showCol) |
| | | } |
| | | this.tableList.allcol = this.tableList.tableColumn.filter(ele=>!ele.default).map(ele=>ele.label); |
| | | this.searchOptions = [] |
| | | for (let i = 0; i < this.tableList.tableColumn.length; i++) { |
| | | const label = this.tableList.tableColumn[i].label |
| | | const value = this.tableList.tableColumn[i].prop |
| | | this.searchOptions.push({ value: value, label: label }) |
| | | } |
| | | }, |
| | | setColumnVisible(showCol){ |
| | | return this.tableColumn.map(ele=>{ |
| | | return { |
| | | ...ele, |
| | | isShowColumn:showCol.includes(ele.label) |
| | | } |
| | | }) |
| | | }, |
| | | selTableCol(val) { |
| | | this.showcol = val; |
| | | this.tableList.tableColumn = this.setColumnVisible(val); |
| | | }, |
| | | // 请求数据 |
| | | async getData() { |
| | |
| | | }, |
| | | // 新建 |
| | | addBtnClick() { |
| | | this.editSalesLeadConfig.visible = true |
| | | this.editSalesLeadConfig.title = "新建" |
| | | this.editSalesLeadConfig.infomation = { businessStatus: "新建", city_id: 0 } |
| | | this.editSalesLeadConfig.visible = true |
| | | }, |
| | | // 编辑 |
| | | handleClick(row) { |
| | | console.log(row) |
| | | this.editSalesLeadConfig.visible = true |
| | | this.editSalesLeadConfig.title = "编辑" |
| | | this.editSalesLeadConfig.infomation = { ...row, businessStatus: "新建" } |
| | | this.editSalesLeadConfig.visible = true |
| | | }, |
| | | // 跟进 |
| | | followupClick(row) { |
| | | this.editConfig.visible = true |
| | | this.editConfig.title = "新建" |
| | | this.editConfig.infomation = { sales_leads_name: row.name } |
| | | |
| | | this.editConfig.visible = true |
| | | }, |
| | | // 导入 |
| | | importClitk() { |
| | |
| | | } |
| | | }, |
| | | // 删除 |
| | | delClick() { |
| | | if (this.selValueList && this.selValueList.length > 0) { |
| | | delClick(id) { |
| | | if(!id){ |
| | | if (this.selValueList && this.selValueList.length == 0) { |
| | | this.$message.warning("请至少选择一条记录") |
| | | return true; |
| | | } |
| | | } |
| | | this.$confirm("是否确认删除?", "警告", { |
| | | confirmButtonText: "确定", |
| | | cancelButtonText: "取消", |
| | |
| | | }) |
| | | .then(() => { |
| | | console.log("dddd") |
| | | getDeleteSalesLeads({ ids: this.selValueList }).then((response) => { |
| | | let params={ids: this.selValueList } |
| | | if(id){ |
| | | params={ids: [id]} |
| | | } |
| | | getDeleteSalesLeads(params).then((response) => { |
| | | if (response.code === 200) { |
| | | this.$message.success("删除成功") |
| | | this.getData() |
| | |
| | | }) |
| | | }) |
| | | .catch(() => {}) |
| | | } else { |
| | | this.$message.warning("请至少选择一条记录") |
| | | } |
| | | }, |
| | | getSelectArray(val) { |
| | | this.selValueList = [] |
| | |
| | | border-radius: 12px; |
| | | height: 100%; |
| | | overflow: hidden; |
| | | } |
| | | |
| | | .supplier-search { |
| | | display: flex; |
| | | align-items: center; |
| | | .add-view { |
| | | margin-left: auto; |
| | | margin-right: 20px; |
| | | } |
| | | } |
| | | .list-view { |
| | | height: calc(100% - 60px); |