This commit is contained in:
weipengfei 2023-09-14 09:28:45 +08:00
parent 2f26ea2617
commit 7d23d66dda
2 changed files with 4 additions and 3 deletions

View File

@ -39,6 +39,7 @@ export function apiShopDraftingcontracts(params: any) {
export function apiShopSendMsgApi(params: any) {
return request.get({ url: '/shop_contract/postsms', params })
}
//请求证据包下载地址
export function contractEvidence(params: any) {
return request.get({ url: "/shop_contract/evidence", params });

View File

@ -92,12 +92,12 @@
label="合同类型"
prop="type_name"
show-overflow-tooltip
/> -->
/>
<el-table-column
label="证据包"
prop="evidence_url"
show-overflow-tooltip
/>
/> -->
<el-table-column label="签约状态" prop="status" show-overflow-tooltip>
<template #default="{ row }">
<span v-if="row.status" style="color: #67c23a">已签约</span>
@ -215,7 +215,7 @@ import {
apiShopContractDelete,
apiShopDraftingcontracts,
apiShopSendMsgApi,
contractEvidence
contractEvidence,
} from "@/api/shop_contract";
import { timeFormat } from "@/utils/util";
import feedback from "@/utils/feedback";