From 1c4841a2e27472da91ad1828b67452ab475afd89 Mon Sep 17 00:00:00 2001 From: yujiacong <1016029365@qq.com> Date: Fri, 25 Jul 2025 18:07:22 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B4=9F=E8=B4=A3=E4=BA=BA=E7=AE=A1=E7=90=86?= =?UTF-8?q?=20-=20=E4=BF=AE=E5=A4=8D=E9=A1=B5=E9=9D=A2=E6=8A=A5=E9=94=99?= =?UTF-8?q?=E7=A9=BA=E7=99=BD=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/ResponsiblePersonManagement.vue | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/views/system/ResponsiblePersonManagement.vue b/src/views/system/ResponsiblePersonManagement.vue index a5912b4..bc2bf52 100644 --- a/src/views/system/ResponsiblePersonManagement.vue +++ b/src/views/system/ResponsiblePersonManagement.vue @@ -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: "",