zuozhengqing
2024-01-08 554aef0a4395d72dc3e2d22990c129475b052b5f
src/views/client/client/index.vue
@@ -28,7 +28,7 @@
        >
          <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>
      </div>
@@ -47,7 +47,7 @@
              @selTableCol="selTableCol"
          >
            <template slot="tableButton">
              <el-table-column label="操作" width="150">
              <el-table-column label="操作" width="180">
                <template slot-scope="scope">
                  <el-button v-if="activeName === 'first'" type="text" size="small" @click="allocationBtnClick(scope.row)"
                  >分配</el-button
@@ -55,7 +55,7 @@
                  <el-button v-else type="text" size="small" @click="changeHighSeasClick(scope.row)">变更公海</el-button>
                  <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="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>
@@ -150,7 +150,7 @@
        visible: false,
        infomation: {}
      },
      not_admin: 2,
      is_public:true,
      tableColumn:[
        { label: "客户名称", prop: "name", min: 100, isClientClick: true, default:true}, // 客户名称
        { label: "销售负责人", prop: "member_name" }, // 销售负责人
@@ -167,13 +167,14 @@
  created() {
    this.setTable()
    this.search_map = {
      not_admin: this.not_admin
      is_public: this.is_public
    }
    this.getData()
  },
  methods: {
    setTable() {
      this.tableList = {
        selectIndex: true,
        tableInfomation: [],
        allcol: [],
        showcol: this.showCol,
@@ -262,12 +263,12 @@
    tabsClick(tab) {
      console.log(tab.name)
      if (tab.name === "first") {
        this.not_admin = 2
        this.is_public = true
      } else {
        this.not_admin = 1
        this.is_public = false
      }
      this.search_map = {
        not_admin: this.not_admin
        is_public: this.is_public
      }
      this.pagerOptions.currPage = 1
      this.getData()
@@ -275,7 +276,7 @@
    // 搜索
    onFilterSearch(searchText){
      this.search_map = {
        not_admin: this.not_admin,
        is_public: this.is_public,
        name: searchText
      }
      this.pagerOptions.currPage = 1
@@ -283,7 +284,6 @@
    },
    // 新建
    addBtnClick() {
      this.editConfig.visible = true
      this.editConfig.title = "新建"
      this.editConfig.infomation = {
        city_id: 0,
@@ -293,28 +293,39 @@
        registered_capital_id: 1,
        enterprise_nature_id: 1,
        enterprise_scale_id: 1,
        industry_id: 1
        industry_id: 1,
        province_id:''
      }
      this.editConfig.visible = true
    },
    // 编辑
    handleClick(row) {
      console.log(row)
      this.editConfig.visible = true
      this.editConfig.title = "编辑"
      this.editConfig.infomation = {
        ...row
        ...row,
        activeName:this.activeName,
      }
      this.editConfig.visible = true
    },
    // 删除
    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: "取消",
          type: "warning"
        })
          .then(() => {
            getDeleteClient({ ids: this.selValueList }).then((response) => {
            let params={ids: this.selValueList }
            if(id){
              params={ids: [id]}
            }
            getDeleteClient(params).then((response) => {
              if (response.code === 200) {
                this.$message.success("删除成功")
                this.getData()
@@ -324,9 +335,6 @@
            })
          })
          .catch(() => {})
      } else {
        this.$message.warning("请至少选择一条记录")
      }
    },
    getSelectArray(val) {
      console.log(val)
@@ -362,14 +370,16 @@
    // 跟进
    followupClick(row) {
      console.log(row)
      this.editFollowupConfig.visible = true
      this.editFollowupConfig.title = "新建"
      this.editFollowupConfig.infomation = {
        ...row,
        client_name: row.name,
        number: "",
        next_follow_time: row.next_visit_time
        codeStandID:'',
        next_follow_time: row.next_visit_time,
        client_id:row.id
      }
      this.editFollowupConfig.visible = true
    },
    // 分配
    allocationBtnClick(row) {
@@ -381,7 +391,7 @@
    async changeHighSeasClick(row) {
      await getAssign({
        ids: [row.id],
        member_id: 1,
        member_id: 0,
        type: "client"
      }).then((res) => {
        this.editConfig.visible = false