器材目录画面 up by dh

This commit is contained in:
duhe
2025-02-27 18:32:44 +08:00
parent 1d533d1199
commit 3180f1e062
7 changed files with 1440 additions and 39 deletions

View File

@@ -207,7 +207,7 @@
label="停用"
align="center"
key="statusEnum"
rop="statusEnum"
prop="statusEnum"
width="160"
/>
<el-table-column
@@ -450,7 +450,7 @@ function handleExport() {
function handleSelectionChange(selection) {
console.log(selection, "selection");
// selectedData.value = selection.map((item) => ({ ...item })); // 存储选择的行数据
ids.value = selection.map(item => item.userId);
ids.value = selection.map(item => item.id);
single.value = selection.length != 1;
multiple.value = !selection.length;
}