526dc39c by lihua

交付查看显示修改

1 parent 8f01514e
......@@ -134,6 +134,7 @@ const tableFields = ref([
return scope.row.verifySatus != 1;
}, click: (scope) => {
//弹出查看日志框。
currTableData.value = scope.row;
dialogInfo.value.visible = true;
execTableInfo.value.loading = true;
getDeliveryVerifyDetail(scope.row.guid).then((res: any) => {
......@@ -344,7 +345,7 @@ const dialogInfo = ref({
size: 700,
direction: "column",
header: {
title: "查看执行内容",
title: "查看",
},
footer: {
visible: false
......@@ -469,6 +470,8 @@ const verifyDialogBtnClick = (btn, info) => {
</div>
<el-dialog v-model="dialogInfo.visible" :title="dialogInfo.header.title" width="700" :modal="true"
:close-on-click-modal="true" destroy-on-close align-center @close="handleDialogCancel">
<div v-if="currTableData.verifySatus == 4" class="title-desc">{{ '未通过原因:' + (currTableData.verifySuggest || '--') }}</div>
<div class="title-desc">执行内容</div>
<Table ref="execTableRef" :tableInfo="execTableInfo" class="exec-table" />
</el-dialog>
<Dialog :dialogInfo="verifyDialogInfo" @btnClick="verifyDialogBtnClick"
......@@ -480,4 +483,10 @@ const verifyDialogBtnClick = (btn, info) => {
.container_wrap {
padding: 0px 16px;
}
.title-desc {
margin-bottom: 4px;
color: #212121;
font-weight: 500;
}
</style>
\ No newline at end of file
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!