更新页面

This commit is contained in:
2025-07-11 15:08:23 +08:00
parent f5d605fc23
commit 69bee283a8
9 changed files with 150 additions and 317 deletions

View File

@ -167,7 +167,7 @@
<script setup>
import { ElMessage } from "element-plus";
import { qcckPost, qcckGet,qcckPut,qcckDelete } from "@/api/qcckApi.js";
import { ref, reactive, onMounted, getCurrentInstance } from "vue";
import { ref, reactive, onMounted, getCurrentInstance, nextTick } from "vue";
import { updateSysDictItem, getSysDictByCode, getSysDictByCodeList, deleteSysDictItem, addSysDictItem} from "@/api/sysDict";
import { useRouter, useRoute } from "vue-router";
const formDom = ref(null);
@ -213,7 +213,9 @@ const tabHeightFn = () => {
};
onMounted(() => {
type.value = route.query.zdlx;
tabHeightFn();
nextTick(()=>{
tabHeightFn();
})
getListData();
});