zhengyiming
4 天以前 245791c6de54b269dc22f38b0f6c5d160bf9c641
src/views/MaterialReview/MaterialReview.vue
@@ -61,6 +61,7 @@
      </ProTableV2>
      <ParkBountyApplyRedoDialog v-bind="dialogProps" />
    </AppContainer>
    <OperateHistoryLogDialog v-bind="logDialogProps" />
  </LoadingLayout>
</template>
@@ -85,7 +86,12 @@
import * as parkBountyApplyServices from '@/services/api/ParkBountyApply';
import _ from 'lodash';
import { ModelValueType } from 'element-plus';
import { useAccess, useGlobalEventContext, useIndustrialParkDropDownList } from '@/hooks';
import {
  useAccess,
  useGlobalEventContext,
  useIndustrialParkDropDownList,
  useOpenLogDialog,
} from '@/hooks';
import ParkBountyApplyRedoDialog from './components/ParkBountyApplyRedoDialog.vue';
defineOptions({
@@ -116,6 +122,7 @@
        row.outCheckStatus !== BountyCheckStatusEnum.CheckPassed,
    },
  },
  logBtn: { emits: { onClick: (role) => openLogDialog(role.id) } },
};
const { checkSubModuleItemShow, column, operationBtns } = useAccess({
@@ -234,6 +241,8 @@
    }
  } catch (error) {}
}
const { openLogDialog, logDialogProps } = useOpenLogDialog();
</script>
<style lang="scss" scoped>