更新
This commit is contained in:
parent
fad705c130
commit
6b4f6d05eb
@ -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 })
|
||||||
}
|
}
|
||||||
|
@ -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 })
|
||||||
|
}
|
@ -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();
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user