yangfeng
2023-08-18 96fdf32bd5612b6c16dcbcc8352a9f54adcc8e7e
src/views/client/salesLead/index.vue
@@ -136,10 +136,10 @@
          { label: "销售线索编号", prop: "number", min: 130 }, // 销售线索编号
          { label: "联系人姓名", prop: "contact_name", min: 130 }, // 联系人姓名
          { label: "手机号码", prop: "contact_phone", min: 130 }, // 手机号码
          { label: "商机来源", prop: "sales_sources_id", min: 130 }, // 商机来源
          { label: "商机来源", prop: "sales_resources", min: 130 }, // 商机来源
          { label: "省份", prop: "province", min: 130 }, // 省份
          { label: "城市", prop: "city", min: 130 }, // 城市
          { label: "负责人", prop: "member_id", min: 130 } // 负责人
          { label: "负责人", prop: "member_name", min: 130 } // 负责人
        ]
      }
      this.searchOptions = []
@@ -161,7 +161,9 @@
            return {
              ...item,
              province: item.Province.name,
              city: item.City.name
              city: item.City.name,
              sales_resources: item.sales_sources.name,
              member_name: item.member.username
            }
          })
          this.tableList.tableInfomation = list || []
@@ -187,7 +189,7 @@
    addBtnClick() {
      this.editSalesLeadConfig.visible = true
      this.editSalesLeadConfig.title = "新建"
      this.editSalesLeadConfig.infomation = { businessStatus: "新建" }
      this.editSalesLeadConfig.infomation = { businessStatus: "新建", city_id: 0 }
    },
    // 编辑
    handleClick(row) {