wupengfei
2025-03-21 cd4a07141ec97ff6c51dd7137462e506d8d0881f
src/views/Home/components/InsureOrderInfoView.vue
@@ -1,4 +1,5 @@
<template>
  <LoadingLayout :loading="state.loading">
  <AppScrollContainer>
    <ChunkCell title="">
      <ProForm :model="detail" ref="formRef" label-width="120px" :is-read="true">
@@ -106,6 +107,7 @@
    </ChunkCell>
    <ChangePersonInfoDialog v-bind="dialogProps"></ChangePersonInfoDialog>
  </AppScrollContainer>
  </LoadingLayout>
</template>
<script setup lang="ts">
@@ -126,7 +128,6 @@
  useTable,
  ProTableV2,
  ProFormRadio,
  FieldSelect,
  defineOperationBtns,
  useFormDialog,
} from '@bole-core/components';
@@ -240,7 +241,7 @@
    return await insuranceOrderServices.getInsuranceOrderDetail(
      { id: id },
      {
        showLoading: false,
        showLoading: !state.loading,
      }
    );
  },
@@ -254,7 +255,8 @@
  await queryClient.ensureQueryData({
    queryKey: ['insuranceOrderServices/getInsuranceOrderDetail', id],
  });
  getBatchRefundInfoDetail();
  await getBatchRefundInfoDetail();
  state.loading = false;
});
const {
@@ -297,12 +299,12 @@
function handleDownloadPerson() {}
function handleDownloadOrder() {}
function handleBatchChange() {
  router.push({
    name: 'BatchChange',
    params: {
      id: id,
    },
  });
  // router.push({
  //   name: 'BatchChange',
  //   params: {
  //     id: id,
  //   },
  // });
}
const { dialogProps, handleEdit, editForm } = useFormDialog({