src/views/Home/components/BatchChangeRecordDetailDialog.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/views/Home/components/InsureClaimDetailDialog.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
src/views/Home/components/BatchChangeRecordDetailDialog.vue
@@ -1,11 +1,7 @@ <template> <ProDialog title="批改信息" v-model="innerVisible" width="1200px" destroy-on-close> <ProDialogTableWrapper :height="400"> <ProTableV2 :table-data="proTableProps.tableData" :columns="column" :show-operation-column="false" > <ProTableV2 v-bind="proTableProps" :columns="column" :show-operation-column="false"> <template #changeType="{ row }"> {{ BatchChangeTypeEnumText[row.changeType] }}</template> </ProTableV2> </ProDialogTableWrapper> src/views/Home/components/InsureClaimDetailDialog.vue
@@ -1,11 +1,7 @@ <template> <ProDialog title="理赔详情" v-model="innerVisible" width="1200px" destroy-on-close> <ProDialogTableWrapper :height="400"> <ProTableV2 :table-data="proTableProps.tableData" :columns="column" :operation-btns="operationBtns" > <ProTableV2 v-bind="proTableProps" :columns="column" :operation-btns="operationBtns"> <template #claimResult="{ row }"> {{ InsuranceClaimResultEnumText[row.claimResult] }} </template>