From 6b4f6d05eb785c240c86d50bd2f05ab34e2dc701 Mon Sep 17 00:00:00 2001 From: weipengfei <2187978347@qq.com> Date: Wed, 13 Sep 2023 19:25:34 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/company.ts | 1 + src/api/shop_contract.ts | 10 ++++++++++ src/views/shop_contract/index.vue | 6 +++++- 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/src/api/company.ts b/src/api/company.ts index 6c97204..f2a49c7 100644 --- a/src/api/company.ts +++ b/src/api/company.ts @@ -29,6 +29,7 @@ export function apiCompanyDetail(params: any) { export function apiSubordinateList(params: any) { return request.get({ url: '/company/subordinate', params }) } +// 重新发送短信 export function sendMsgApi(params: any) { return request.get({ url: '/company/postsms', params }) } diff --git a/src/api/shop_contract.ts b/src/api/shop_contract.ts index 4b7c024..c914f4a 100644 --- a/src/api/shop_contract.ts +++ b/src/api/shop_contract.ts @@ -29,3 +29,13 @@ export function apiShopContractDetail(params: any) { export function apiShopWindControl(params: any) { return request.post({ url: '/shop_contract/wind_control', params }) } + +// 发送合同 +export function apiShopDraftingcontracts(params: any) { + return request.get({ url: '/shop_contract/Draftingcontracts', params }) +} + +// 重新发送短信 +export function apiShopSendMsgApi(params: any) { + return request.get({ url: '/shop_contract/postsms', params }) +} \ No newline at end of file diff --git a/src/views/shop_contract/index.vue b/src/views/shop_contract/index.vue index 698022c..c8dcfa0 100644 --- a/src/views/shop_contract/index.vue +++ b/src/views/shop_contract/index.vue @@ -207,6 +207,8 @@ import { useDictData } from "@/hooks/useDictOptions"; import { apiShopContractLists, apiShopContractDelete, + apiShopDraftingcontracts, + apiShopSendMsgApi, } from "@/api/shop_contract"; import { timeFormat } from "@/utils/util"; import feedback from "@/utils/feedback"; @@ -282,7 +284,8 @@ const offPop = () => { // 发送合同 const creContct = async () => { - // await generateGontract({ id: contractId.value }); + // await generateGontract({ id: contractId.value }); + await apiShopDraftingcontracts({ id: contractId.value }); getLists(); offPop(); }; @@ -290,6 +293,7 @@ const creContct = async () => { // 发送短信 const sendMsg = async () => { // await sendMsgApi({ id: contractId.value }); + await apiShopSendMsgApi({ id: contractId.value }); getLists(); offPop(); };