验收修改
Showing
6 changed files
with
22 additions
and
20 deletions
| ... | @@ -218,7 +218,7 @@ export const continueContractNegotiate = (params) => request({ | ... | @@ -218,7 +218,7 @@ export const continueContractNegotiate = (params) => request({ |
| 218 | 218 | ||
| 219 | /** 获取可选的企业下拉列表,认证过之后带标识的 */ | 219 | /** 获取可选的企业下拉列表,认证过之后带标识的 */ |
| 220 | export const getContractTenantList = (tenantName = '') => request({ | 220 | export const getContractTenantList = (tenantName = '') => request({ |
| 221 | url: `${import.meta.env.VITE_APP_DIGITAL_CONTRACT_URL}/connector-invoke/get-enterprise?tenantName=${tenantName}`, | 221 | url: `${import.meta.env.VITE_APP_DIGITAL_CONTRACT_URL}/tenant/get-enterprise?tenantName=${tenantName}`, |
| 222 | method: 'get' | 222 | method: 'get' |
| 223 | }) | 223 | }) |
| 224 | 224 | ... | ... |
| ... | @@ -217,19 +217,19 @@ const tableInfo = ref({ | ... | @@ -217,19 +217,19 @@ const tableInfo = ref({ |
| 217 | let deliveryStatus = row.deliveryStatus; | 217 | let deliveryStatus = row.deliveryStatus; |
| 218 | if (deliveryStatus == 2) {//已交付有删除按钮 | 218 | if (deliveryStatus == 2) {//已交付有删除按钮 |
| 219 | btns.push({ | 219 | btns.push({ |
| 220 | value: 'del', label: '删除', click: (scope) => { | 220 | value: 'del', label: '销毁', click: (scope) => { |
| 221 | proxy.$openMessageBox("此操作将永久删除, 是否继续?", () => { | 221 | proxy.$openMessageBox("此操作将永久销毁数据, 是否继续?", () => { |
| 222 | deleteDeliveryContract([scope.row.guid]).then((res: any) => { | 222 | deleteDeliveryContract([scope.row.guid]).then((res: any) => { |
| 223 | if (res?.code == proxy.$passCode) { | 223 | if (res?.code == proxy.$passCode) { |
| 224 | page.value.curr = 1; | 224 | page.value.curr = 1; |
| 225 | getTableData(); | 225 | getTableData(); |
| 226 | proxy.$ElMessage.success('删除成功'); | 226 | proxy.$ElMessage.success('销毁成功'); |
| 227 | } else { | 227 | } else { |
| 228 | res?.msg && proxy.$ElMessage.error(res?.msg); | 228 | res?.msg && proxy.$ElMessage.error(res?.msg); |
| 229 | } | 229 | } |
| 230 | }); | 230 | }); |
| 231 | }, () => { | 231 | }, () => { |
| 232 | proxy.$ElMessage.info("已取消"); | 232 | proxy.$ElMessage.info("已取消销毁"); |
| 233 | }) | 233 | }) |
| 234 | } | 234 | } |
| 235 | }); | 235 | }); | ... | ... |
| ... | @@ -117,7 +117,9 @@ const processInstanceId = ref(''); | ... | @@ -117,7 +117,9 @@ const processInstanceId = ref(''); |
| 117 | const registerDetailTableInfo = ref({ | 117 | const registerDetailTableInfo = ref({ |
| 118 | id: 'register-data-table', | 118 | id: 'register-data-table', |
| 119 | rowKey: 'guid', | 119 | rowKey: 'guid', |
| 120 | height: 220, | 120 | height: 'auto', |
| 121 | minPanelHeight: '60px', | ||
| 122 | minHeight: '60px', | ||
| 121 | loading: false, | 123 | loading: false, |
| 122 | fields: [{ label: "序号", type: "index", width: 56, align: "center" }, | 124 | fields: [{ label: "序号", type: "index", width: 56, align: "center" }, |
| 123 | { label: "事项", field: "title", width: 160, align: "left" }, | 125 | { label: "事项", field: "title", width: 160, align: "left" }, | ... | ... |
| ... | @@ -19,7 +19,6 @@ import { getParamsList, getDamTypesList } from "@/api/modules/dataAsset"; | ... | @@ -19,7 +19,6 @@ import { getParamsList, getDamTypesList } from "@/api/modules/dataAsset"; |
| 19 | import { | 19 | import { |
| 20 | changeNum, | 20 | changeNum, |
| 21 | } from "@/utils/common"; | 21 | } from "@/utils/common"; |
| 22 | import { chunk } from "@/api/modules/common"; | ||
| 23 | import { passFlowData, rejectFlowData, revokeFlowData, isMyFirstNode } from "@/api/modules/workFlowService"; | 22 | import { passFlowData, rejectFlowData, revokeFlowData, isMyFirstNode } from "@/api/modules/workFlowService"; |
| 24 | 23 | ||
| 25 | const { proxy } = getCurrentInstance() as any; | 24 | const { proxy } = getCurrentInstance() as any; |
| ... | @@ -633,15 +632,16 @@ onBeforeMount(() => { | ... | @@ -633,15 +632,16 @@ onBeforeMount(() => { |
| 633 | proxy.$ElMessage.error(res.msg); | 632 | proxy.$ElMessage.error(res.msg); |
| 634 | } | 633 | } |
| 635 | }) | 634 | }) |
| 636 | getParamsList({ | 635 | // 连接器没有通过和驳回,不需要审批通过时填写合规信息。 |
| 637 | dictType: "数据产品上架审批合规信息", | 636 | // getParamsList({ |
| 638 | }).then((res: any) => { | 637 | // dictType: "数据产品上架审批合规信息", |
| 639 | if (res.code == proxy.$passCode) { | 638 | // }).then((res: any) => { |
| 640 | assetsSafeInfo.value = res.data || []; | 639 | // if (res.code == proxy.$passCode) { |
| 641 | } else { | 640 | // assetsSafeInfo.value = res.data || []; |
| 642 | proxy.$ElMessage.error(res.msg); | 641 | // } else { |
| 643 | } | 642 | // proxy.$ElMessage.error(res.msg); |
| 644 | }) | 643 | // } |
| 644 | // }) | ||
| 645 | }) | 645 | }) |
| 646 | 646 | ||
| 647 | const assetsSafeInfo = ref<any>() | 647 | const assetsSafeInfo = ref<any>() |
| ... | @@ -928,7 +928,7 @@ const rejectDialogBtnClick = (btn, info) => { | ... | @@ -928,7 +928,7 @@ const rejectDialogBtnClick = (btn, info) => { |
| 928 | @tableSwitchBeforeChange="tableSwitchBeforeChange" /> | 928 | @tableSwitchBeforeChange="tableSwitchBeforeChange" /> |
| 929 | </div> | 929 | </div> |
| 930 | <el-dialog v-model="dialogVisible" :title="dialogTitle" width="550px" :close-on-click-modal="false"> | 930 | <el-dialog v-model="dialogVisible" :title="dialogTitle" width="550px" :close-on-click-modal="false"> |
| 931 | <Form ref="listingFormRef" :itemList="formInfo.items" :rules="formInfo.rules" /> | 931 | <!-- <Form ref="listingFormRef" :itemList="formInfo.items" :rules="formInfo.rules" /> --> |
| 932 | <el-input type="textarea" :rows="3" maxlength="100" v-model="approveSuggest" resize="none" | 932 | <el-input type="textarea" :rows="3" maxlength="100" v-model="approveSuggest" resize="none" |
| 933 | :placeholder="dynamicPlaceholder" /> | 933 | :placeholder="dynamicPlaceholder" /> |
| 934 | <template #footer> | 934 | <template #footer> | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -1433,19 +1433,19 @@ onActivated(() => { | ... | @@ -1433,19 +1433,19 @@ onActivated(() => { |
| 1433 | <el-table ref="execContractTableRef" :data="execContractTableInfo.data" :highlight-current-row="true" stripe | 1433 | <el-table ref="execContractTableRef" :data="execContractTableInfo.data" :highlight-current-row="true" stripe |
| 1434 | v-loading="execContractTableInfo.loading" border height="100%" tooltip-effect="light" row-key="guid" :style="{ | 1434 | v-loading="execContractTableInfo.loading" border height="100%" tooltip-effect="light" row-key="guid" :style="{ |
| 1435 | width: '100%', | 1435 | width: '100%', |
| 1436 | height: '300px', | 1436 | height: '350px', |
| 1437 | display: 'inline-block', | 1437 | display: 'inline-block', |
| 1438 | }"> | 1438 | }"> |
| 1439 | <el-table-column type="expand"> | 1439 | <el-table-column type="expand"> |
| 1440 | <template #default="scope"> | 1440 | <template #default="scope"> |
| 1441 | <div class="h-title mt6">履约证明</div> | 1441 | <div class="h-title mt6">履约证明</div> |
| 1442 | <div class="list_panel" style="width: 1200px;"> | 1442 | <div class="list_panel" style="width: 1200px;"> |
| 1443 | <div class="list_item"> | 1443 | <div class="list_item is_block"> |
| 1444 | <span class="item_label">日志摘要:</span> | 1444 | <span class="item_label">日志摘要:</span> |
| 1445 | <span class="item_value"><ellipsis-tooltip :content="scope.row?.contractProof?.logHash || '--'" | 1445 | <span class="item_value"><ellipsis-tooltip :content="scope.row?.contractProof?.logHash || '--'" |
| 1446 | class-name="w100f mr8-i" :refName="'tooltipOver' + 'logHash'"></ellipsis-tooltip></span> | 1446 | class-name="w100f mr8-i" :refName="'tooltipOver' + 'logHash'"></ellipsis-tooltip></span> |
| 1447 | </div> | 1447 | </div> |
| 1448 | <div class="list_item"> | 1448 | <div class="list_item is_block"> |
| 1449 | <span class="item_label">区块链交易ID:</span> | 1449 | <span class="item_label">区块链交易ID:</span> |
| 1450 | <span class="item_value row"><ellipsis-tooltip | 1450 | <span class="item_value row"><ellipsis-tooltip |
| 1451 | :content="scope.row?.contractProof?.blockchainTx || '--'" class-name="w100f mr8-i" | 1451 | :content="scope.row?.contractProof?.blockchainTx || '--'" class-name="w100f mr8-i" | ... | ... |
-
Please register or sign in to post a comment