wupengfei
2025-03-21 cd4a07141ec97ff6c51dd7137462e506d8d0881f
src/views/Home/components/BatchChangeRecordView.vue
@@ -1,17 +1,19 @@
<template>
  <AppContainer>
    <ProTableV2
      v-bind="proTableProps"
      :columns="column"
      :operationBtns="operationBtns"
      :autoHeight="false"
      :tableProps="{
        maxHeight: '400px',
      }"
    >
    </ProTableV2>
    <BatchChangeRecordDetailDialog v-bind="dialogProps"></BatchChangeRecordDetailDialog>
  </AppContainer>
  <LoadingLayout :loading="state.loading">
    <AppContainer>
      <ProTableV2
        v-bind="proTableProps"
        :columns="column"
        :operationBtns="operationBtns"
        :autoHeight="false"
        :tableProps="{
          maxHeight: '400px',
        }"
      >
      </ProTableV2>
      <BatchChangeRecordDetailDialog v-bind="dialogProps"></BatchChangeRecordDetailDialog>
    </AppContainer>
  </LoadingLayout>
</template>
<script setup lang="ts">
@@ -146,8 +148,9 @@
  });
}
onMounted(() => {
  getBatchRefundInfoDetail();
onMounted(async () => {
  await getBatchRefundInfoDetail();
  state.loading = false;
});
</script>