From 563c60ab9d465e275bf18b57fde7b51c4bc020da Mon Sep 17 00:00:00 2001 From: zuozhengqing <a13193816592@163.com> Date: 星期三, 29 十一月 2023 15:32:56 +0800 Subject: [PATCH] 出入库明细单打印功能调整,新引入三方库:html2Canvas,jsPdf,vue-office --- src/api/common/other.js | 20 +++++++++++++++++--- 1 files changed, 17 insertions(+), 3 deletions(-) diff --git a/src/api/common/other.js b/src/api/common/other.js index 9a97585..09e37d6 100644 --- a/src/api/common/other.js +++ b/src/api/common/other.js @@ -1,7 +1,6 @@ // import request from "@/common/untils/request.js" import request from "@/common/untils/request" - -// 鏌ヨ鍏徃鍒楄〃 +// 鏌ヨ鍏徃 export const getCompanyList = (data) => { return request({ url: "/api-wms/v1/company/company", @@ -9,7 +8,22 @@ params: data }) } - +// 鏌ヨ渚涘簲鍟� +export const getSupplierList = (data) => { + return request({ + url: "/api-wms/v1/operation/getSupplierList", + method: "get", + params: data + }) +} +// 鏌ヨ瀹㈡埛 +export const getClientList = (data) => { + return request({ + url: "/api-wms/v1/operation/getClientList", + method: "get", + params: data + }) +} // 涓婁紶闄勪欢 export const uploadFiles = (data) => { return request({ -- Gitblit v1.8.0