diff --git a/src/views/users/UserInformationCustomer.vue b/src/views/users/UserInformationCustomer.vue index e6078ff..2478e66 100644 --- a/src/views/users/UserInformationCustomer.vue +++ b/src/views/users/UserInformationCustomer.vue @@ -10,7 +10,6 @@ v-loading="tableData.loading" :data="tableData.data" ref="multipleTable" - @selection-change="handleSelectionChange" border style="width: 100%; margin-top: 25px" > @@ -141,6 +140,7 @@ const tableData = reactive({ // 查询 const getData = () => { tableData.loading = true; + tableData.data = []; getUserCheckAdmin(formData).then((res) => { if (res.code == 200) { tableData.data.push(res.data); @@ -222,4 +222,4 @@ const confirmChangeFun = () => { .selectBoxImg { height: 150px; } - + \ No newline at end of file