From f0119595aab57a037a40b0c9fc183bb1517d015f Mon Sep 17 00:00:00 2001 From: songshankun <songshankun@foxmail.com> Date: 星期一, 16 十月 2023 14:56:16 +0800 Subject: [PATCH] feat: 销售机会编辑时允许编辑联系人 --- src/store/modules/getClientName.js | 72 +++++++++++++++++++++++++++++++++++ 1 files changed, 71 insertions(+), 1 deletions(-) diff --git a/src/store/modules/getClientName.js b/src/store/modules/getClientName.js index b815996..194f2b0 100644 --- a/src/store/modules/getClientName.js +++ b/src/store/modules/getClientName.js @@ -6,6 +6,10 @@ import { getServiceContractList } from "@/api/serviceManage/serviceContract" import { getContractList } from "@/api/sales/contractManage" import { getSalesDetailsList } from "@/api/sales/salesDetails" +import { getQuotationList } from "@/api/sales/quotation" +import { getServiceOrderList } from "@/api/serviceManage/clientServiceOrder" +import { getProductList } from "@/api/common/other" +import { getSalesReturnList } from "@/api/sales/salesReturn" import { Message } from "element-ui" export default { @@ -17,7 +21,11 @@ masterOrderList: [], // 閿�鍞�诲崟 serviceContractList: [], // 鏈嶅姟鍚堝悓 getContractList: [], // 鍚堝悓璁㈠崟 - salesDetailsList: [] // 閿�鍞槑缁嗗崟 + salesDetailsList: [], // 閿�鍞槑缁嗗崟 + quotationList: [], // 鎶ヤ环鍗� + serviceOrderList: [], // 瀹㈡埛鏈嶅姟鍗� + productList: [], // 浜у搧鍒楄〃 + salesReturnList: [] // 閿�鍞��璐у崟 }, mutations: { clientNameList(state, payload) { @@ -43,6 +51,18 @@ }, salesDetailsList(state, payload) { state.salesDetailsList = payload + }, + quotationList(state, payload) { + state.quotationList = payload + }, + serviceOrderList(state, payload) { + state.serviceOrderList = payload + }, + productList(state, payload) { + state.productList = payload + }, + salesReturnList(state, payload) { + state.salesReturnList = payload } }, actions: { @@ -64,6 +84,9 @@ } }) }, + getContactFilter({ commit }, newData) { + commit("contactNameList", newData) + }, geChance(context) { getSaleChanceList().then((res) => { if (res.code == 200) { @@ -72,6 +95,9 @@ Message.error(res.msg) } }) + }, + getChanceFilter({commit},newData){ + commit("saleChancelist",newData) }, geLead(context) { getSalesLeadsList().then((res) => { @@ -117,6 +143,50 @@ Message.error(res.msg) } }) + }, + getSalesDetailsFliter({commit},newData){ + commit("salesDetailsList", newData) + }, + geQuotation(context) { + getQuotationList().then((res) => { + if (res.code == 200) { + context.commit("quotationList", res.data.list) + } else { + Message.error(res.msg) + } + }) + }, + geServiceOrder(context) { + getServiceOrderList().then((res) => { + if (res.code == 200) { + context.commit("serviceOrderList", res.data.data) + } else { + Message.error(res.msg) + } + }) + }, + geProductList(context) { + getProductList({ productName: "", productNumber: "", page: 1, pageSize: 10 }).then((res) => { + if (res.code == 200) { + console.log(res.data.data) + context.commit("productList", res.data.data) + } else { + Message.error(res.msg) + } + }) + }, + geReturnList(context) { + getSalesReturnList({ productName: "", productNumber: "", page: 1, pageSize: 10 }).then((res) => { + if (res.code == 200) { + console.log(res.data.list) + context.commit("salesReturnList", res.data.list) + } else { + Message.error(res.msg) + } + }) + }, + getReturnListFliter({commit},newData){ + commit("salesReturnList",newData) } } } -- Gitblit v1.8.0