用户信息-客服 修改查询数据叠加问题

This commit is contained in:
2025-08-20 17:02:10 +08:00
parent 147bc355b6
commit e1af2e132a

View File

@@ -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);