yangfeng
2023-10-13 c5dc5086ea67f32afb457141aec478b66a037ea3
src/store/modules/getClientName.js
@@ -84,6 +84,9 @@
        }
      })
    },
    getContactFilter({ commit }, newData) {
      commit("contactNameList", newData)
    },
    geChance(context) {
      getSaleChanceList().then((res) => {
        if (res.code == 200) {
@@ -158,9 +161,9 @@
    },
    geProductList(context) {
      getProductList({ productName: "", productNumber: "", page: 1, pageSize: 10 }).then((res) => {
        if (res.data.code == 200) {
          console.log(res.data.data.data)
          context.commit("productList", res.data.data.data)
        if (res.code == 200) {
          console.log(res.data.data)
          context.commit("productList", res.data.data)
        } else {
          Message.error(res.msg)
        }