wupengfei
2025-04-02 d82fea569f9bb487364d667cdf3af626cf06f20e
fix: bug
2个文件已修改
12 ■■■■ 已修改文件
src/views/Home/components/BatchChangeRecordDetailDialog.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/Home/components/InsureClaimDetailDialog.vue 6 ●●●● 补丁 | 查看 | 原始文档 | 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>