更新
This commit is contained in:
parent
fad705c130
commit
6b4f6d05eb
@ -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 })
|
||||
}
|
||||
|
@ -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 })
|
||||
}
|
@ -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";
|
||||
@ -283,6 +285,7 @@ const offPop = () => {
|
||||
// 发送合同
|
||||
const creContct = async () => {
|
||||
// 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();
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user