This commit is contained in:
weipengfei 2023-09-13 19:25:34 +08:00
parent fad705c130
commit 6b4f6d05eb
3 changed files with 16 additions and 1 deletions

View File

@ -29,6 +29,7 @@ export function apiCompanyDetail(params: any) {
export function apiSubordinateList(params: any) { export function apiSubordinateList(params: any) {
return request.get({ url: '/company/subordinate', params }) return request.get({ url: '/company/subordinate', params })
} }
// 重新发送短信
export function sendMsgApi(params: any) { export function sendMsgApi(params: any) {
return request.get({ url: '/company/postsms', params }) return request.get({ url: '/company/postsms', params })
} }

View File

@ -29,3 +29,13 @@ export function apiShopContractDetail(params: any) {
export function apiShopWindControl(params: any) { export function apiShopWindControl(params: any) {
return request.post({ url: '/shop_contract/wind_control', params }) 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 })
}

View File

@ -207,6 +207,8 @@ import { useDictData } from "@/hooks/useDictOptions";
import { import {
apiShopContractLists, apiShopContractLists,
apiShopContractDelete, apiShopContractDelete,
apiShopDraftingcontracts,
apiShopSendMsgApi,
} from "@/api/shop_contract"; } from "@/api/shop_contract";
import { timeFormat } from "@/utils/util"; import { timeFormat } from "@/utils/util";
import feedback from "@/utils/feedback"; import feedback from "@/utils/feedback";
@ -282,7 +284,8 @@ const offPop = () => {
// //
const creContct = async () => { const creContct = async () => {
// await generateGontract({ id: contractId.value }); // await generateGontract({ id: contractId.value });
await apiShopDraftingcontracts({ id: contractId.value });
getLists(); getLists();
offPop(); offPop();
}; };
@ -290,6 +293,7 @@ const creContct = async () => {
// //
const sendMsg = async () => { const sendMsg = async () => {
// await sendMsgApi({ id: contractId.value }); // await sendMsgApi({ id: contractId.value });
await apiShopSendMsgApi({ id: contractId.value });
getLists(); getLists();
offPop(); offPop();
}; };