修复已知bug

This commit is contained in:
2024-07-23 16:41:29 +08:00
parent e0b85aae8f
commit 717c89a58e
12 changed files with 92 additions and 36 deletions

View File

@@ -15,6 +15,7 @@
<search
@search="reload"
:selection="selection"
:count="count"
@add="openEdit"
@remove="removeBatch"
@batchMove="openMove"
@@ -66,6 +67,7 @@
// 表格选中数据
const selection = ref<Mp[]>([]);
const count = ref<number>(0);
// 当前编辑数据
const current = ref<Mp | null>(null);
// 是否显示编辑弹窗
@@ -213,6 +215,10 @@
/* 查询 */
const query = () => {
loading.value = true;
pageMp({}).then((res) => {
console.log(res?.count);
count.value = res?.count;
});
};
/* 自定义行属性 */