交付查看显示修改
Showing
1 changed file
with
10 additions
and
1 deletions
| ... | @@ -134,6 +134,7 @@ const tableFields = ref([ | ... | @@ -134,6 +134,7 @@ const tableFields = ref([ |
| 134 | return scope.row.verifySatus != 1; | 134 | return scope.row.verifySatus != 1; |
| 135 | }, click: (scope) => { | 135 | }, click: (scope) => { |
| 136 | //弹出查看日志框。 | 136 | //弹出查看日志框。 |
| 137 | currTableData.value = scope.row; | ||
| 137 | dialogInfo.value.visible = true; | 138 | dialogInfo.value.visible = true; |
| 138 | execTableInfo.value.loading = true; | 139 | execTableInfo.value.loading = true; |
| 139 | getDeliveryVerifyDetail(scope.row.guid).then((res: any) => { | 140 | getDeliveryVerifyDetail(scope.row.guid).then((res: any) => { |
| ... | @@ -344,7 +345,7 @@ const dialogInfo = ref({ | ... | @@ -344,7 +345,7 @@ const dialogInfo = ref({ |
| 344 | size: 700, | 345 | size: 700, |
| 345 | direction: "column", | 346 | direction: "column", |
| 346 | header: { | 347 | header: { |
| 347 | title: "查看执行内容", | 348 | title: "查看", |
| 348 | }, | 349 | }, |
| 349 | footer: { | 350 | footer: { |
| 350 | visible: false | 351 | visible: false |
| ... | @@ -469,6 +470,8 @@ const verifyDialogBtnClick = (btn, info) => { | ... | @@ -469,6 +470,8 @@ const verifyDialogBtnClick = (btn, info) => { |
| 469 | </div> | 470 | </div> |
| 470 | <el-dialog v-model="dialogInfo.visible" :title="dialogInfo.header.title" width="700" :modal="true" | 471 | <el-dialog v-model="dialogInfo.visible" :title="dialogInfo.header.title" width="700" :modal="true" |
| 471 | :close-on-click-modal="true" destroy-on-close align-center @close="handleDialogCancel"> | 472 | :close-on-click-modal="true" destroy-on-close align-center @close="handleDialogCancel"> |
| 473 | <div v-if="currTableData.verifySatus == 4" class="title-desc">{{ '未通过原因:' + (currTableData.verifySuggest || '--') }}</div> | ||
| 474 | <div class="title-desc">执行内容</div> | ||
| 472 | <Table ref="execTableRef" :tableInfo="execTableInfo" class="exec-table" /> | 475 | <Table ref="execTableRef" :tableInfo="execTableInfo" class="exec-table" /> |
| 473 | </el-dialog> | 476 | </el-dialog> |
| 474 | <Dialog :dialogInfo="verifyDialogInfo" @btnClick="verifyDialogBtnClick" | 477 | <Dialog :dialogInfo="verifyDialogInfo" @btnClick="verifyDialogBtnClick" |
| ... | @@ -480,4 +483,10 @@ const verifyDialogBtnClick = (btn, info) => { | ... | @@ -480,4 +483,10 @@ const verifyDialogBtnClick = (btn, info) => { |
| 480 | .container_wrap { | 483 | .container_wrap { |
| 481 | padding: 0px 16px; | 484 | padding: 0px 16px; |
| 482 | } | 485 | } |
| 486 | |||
| 487 | .title-desc { | ||
| 488 | margin-bottom: 4px; | ||
| 489 | color: #212121; | ||
| 490 | font-weight: 500; | ||
| 491 | } | ||
| 483 | </style> | 492 | </style> |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
-
Please register or sign in to post a comment