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

This commit is contained in:
2025-08-20 17:02:10 +08:00
parent 93b471dada
commit fcdc63641f

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);
@@ -222,4 +222,4 @@ const confirmChangeFun = () => {
.selectBoxImg {
height: 150px;
}
</style>
</style>