pull/1/head
LiuJiaNan 2024-01-31 16:44:17 +08:00
parent 62798bee5f
commit 440a1bd252
3 changed files with 14 additions and 6 deletions

View File

@ -24,7 +24,7 @@ import { ref, watch, watchEffect } from "vue";
import { layoutFnGetElectronicFenceTree } from "@/assets/js/data_dictionary.js";
defineOptions({
name: "LayoutDepartmentTree",
name: "LayoutElectronicFenceTree",
});
const props = defineProps({
refresh: {

View File

@ -106,7 +106,12 @@
:type="data.addOrEditDialog.type"
:parent-name="DEPARTMENT_NAME"
:parent-id="DEPARTMENT_ID"
@get-data="fnResetPaginationTransfer"
@get-data="
() => {
fnResetPaginationTransfer();
data.refreshTreeData = true;
}
"
/>
</div>
</template>

View File

@ -117,7 +117,12 @@
:type="data.addOrEditDialog.type"
:parent-name="ELECTRONIC_FENCE_AREA_NAME"
:parent-id="ELECTRONIC_FENCE_AREA_ID"
@get-data="fnResetPaginationTransfer"
@get-data="
() => {
fnResetPaginationTransfer();
data.refreshTreeData = true;
}
"
/>
</div>
</template>
@ -143,7 +148,7 @@ import useButtonJurisdiction from "@/assets/js/useButtonJurisdiction.js";
const router = useRouter();
const route = useRoute();
const parentIdDefault = "0";
const parentNameDefault = "(无)此项为顶级部门";
const parentNameDefault = "(无)此项为顶级电子围栏";
const ELECTRONIC_FENCE_AREA_ID = ref(
route.query.ELECTRONIC_FENCE_AREA_ID || parentIdDefault
);
@ -178,13 +183,11 @@ const data = reactive({
});
const buttonJurisdiction = await useButtonJurisdiction("department");
const fnGetDataTransfer = () => {
data.refreshTreeData = true;
fnGetData({
ELECTRONIC_FENCE_AREA_ID: ELECTRONIC_FENCE_AREA_ID.value,
});
};
const fnResetPaginationTransfer = () => {
data.refreshTreeData = true;
fnResetPagination({
ELECTRONIC_FENCE_AREA_ID: ELECTRONIC_FENCE_AREA_ID.value,
});