|
@@ -4,7 +4,7 @@
|
|
|
<el-icon @click="handleRefresh" style="cursor: pointer">
|
|
|
<Refresh />
|
|
|
</el-icon>
|
|
|
- <div class="vertical-line"></div>
|
|
|
+ <!-- <div class="vertical-line"></div>
|
|
|
<div>
|
|
|
<el-checkbox
|
|
|
v-model="isCheckAll"
|
|
@@ -49,7 +49,7 @@
|
|
|
/>
|
|
|
<el-button @click="handleMove" :disabled="selectData.length === 0"
|
|
|
>删除</el-button
|
|
|
- >
|
|
|
+ > -->
|
|
|
</div>
|
|
|
<div style="padding: 10px 15px; width: 100%">
|
|
|
<el-table
|
|
@@ -59,7 +59,7 @@
|
|
|
@selection-change="handleSelectionChange"
|
|
|
v-loading="loading"
|
|
|
>
|
|
|
- <el-table-column label=" " width="40" align="center">
|
|
|
+ <!-- <el-table-column label=" " width="40" align="center">
|
|
|
<template #default="{ row, $index }">
|
|
|
<div>
|
|
|
<el-checkbox
|
|
@@ -70,7 +70,7 @@
|
|
|
/>
|
|
|
</div>
|
|
|
</template>
|
|
|
- </el-table-column>
|
|
|
+ </el-table-column> -->
|
|
|
<el-table-column label="状态" width="70">
|
|
|
<template #default="{ row, $index }">
|
|
|
<div style="cursor: pointer" @click="handleRowClick(row, $index)">
|
|
@@ -343,17 +343,19 @@ const getOtherData = () => {
|
|
|
});
|
|
|
}, 1000);
|
|
|
|
|
|
- proxy
|
|
|
- .post("/myTag/page", {
|
|
|
- pageNum: 1,
|
|
|
- pageSize: 9999,
|
|
|
- id: useUserStore().user.userId,
|
|
|
- })
|
|
|
- .then((res) => {
|
|
|
- tagData.value = res.rows;
|
|
|
- });
|
|
|
+ setTimeout(() => {
|
|
|
+ proxy
|
|
|
+ .post("/myTag/page", {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 9999,
|
|
|
+ id: useUserStore().user.userId,
|
|
|
+ })
|
|
|
+ .then((res) => {
|
|
|
+ tagData.value = res.rows;
|
|
|
+ });
|
|
|
+ }, 1000);
|
|
|
};
|
|
|
-getOtherData();
|
|
|
+// getOtherData();
|
|
|
const isCheckAll = ref(false);
|
|
|
const selectTag = ref("");
|
|
|
const selectFolder = ref("");
|