负责人管理 - 修复页面报错空白问题
This commit is contained in:
@@ -10,7 +10,6 @@
|
||||
v-loading="tableData.loading"
|
||||
:data="tableData.data"
|
||||
ref="multipleTable"
|
||||
@selection-change="handleSelectionChange"
|
||||
border
|
||||
style="width: 100%; margin-top: 25px"
|
||||
>
|
||||
@@ -139,7 +138,6 @@
|
||||
import { ref, onMounted, reactive, computed } from "vue";
|
||||
import { ElMessage, ElMessageBox } from "element-plus";
|
||||
import PartitionSelect from "@/views/common/partitionSelect.vue";
|
||||
import PartitionRegionSelect from "@/views/common/partitionRegionSelect.vue";
|
||||
import {
|
||||
getGuildOperatorList,
|
||||
getlistByPartitionId,
|
||||
@@ -148,7 +146,7 @@ import {
|
||||
} from "@/api/ResponsiblePersonManagement/ResponsiblePersonManagement.js";
|
||||
export default {
|
||||
name: "ResponsiblePersonManagement",
|
||||
// components: { PartitionRegionSelect, PartitionSelect },
|
||||
components: { PartitionSelect },
|
||||
setup() {
|
||||
const formData = reactive({
|
||||
pageNo: 1,
|
||||
@@ -160,7 +158,7 @@ export default {
|
||||
loading: false,
|
||||
});
|
||||
const addFormData = reactive({
|
||||
partitionId: undefined,
|
||||
partitionId: null,
|
||||
regionIds: [],
|
||||
name: "",
|
||||
adminId: "",
|
||||
@@ -218,7 +216,7 @@ export default {
|
||||
};
|
||||
const resetAddFormData = () => {
|
||||
Object.assign(addFormData, {
|
||||
partitionId: undefined,
|
||||
partitionId: null,
|
||||
regionId: [],
|
||||
name: "",
|
||||
adminId: "",
|
||||
|
Reference in New Issue
Block a user