This commit is contained in:
2026-01-14 17:37:48 +08:00
parent 6994b66692
commit 50835f8a9c
2 changed files with 50 additions and 0 deletions

View File

@ -19,6 +19,7 @@
</template>
<!-- 操作 -->
<template #controls="{ row }">
<el-link type="primary" link @click="dendDep(row)">上报分局</el-link>
<el-link type="primary" link @click="onBatchAudit('detail', row)">详情</el-link>
</template>
</MyTable>
@ -29,6 +30,8 @@
</div>
<!-- 新增 -->
<AddForm ref="addFormRef" @refresh="getList" :dic="{D_BZ_WHCD}"></AddForm>
<!-- 审核流程 -->
<Steps ref="RefSteap" ></Steps>
</div>
</template>
@ -38,13 +41,16 @@ import MyTable from "@/components/aboutTable/MyTable.vue";
import Pages from "@/components/aboutTable/Pages.vue";
import Search from "@/components/aboutTable/Search.vue";
import AddForm from "./components/addForm.vue";
import Steps from "./components/steps.vue";
import {getItem} from '@/utils/storage.js'
import { qcckPost } from "@/api/qcckApi.js";
import { reactive, ref, onMounted, getCurrentInstance, nextTick } from "vue";
import { ElMessage } from "element-plus";
const { proxy } = getCurrentInstance();
const { D_BZ_WHCD,D_BA_SPZT } = proxy.$dict("D_BZ_WHCD",'D_BA_SPZT');
const RefSteap = ref();
const addFormRef = ref();
const shForm = ref();
const searchBox = ref(); //搜索框
const selectedRows = ref([]);
const searchConfiger = ref([
@ -132,6 +138,10 @@ const onBatchAudit = (type, row) => {
};
// 详情
const dendDep = (row) => {
RefSteap.value.init(row);
};
// 表格高度计算