@@ -51,6 +52,7 @@ const router = useRouter();
const visitedViews = computed(() => useTagsViewStore().getVisitedViews());
const routes = computed(() => usePermissionStore().getRoutes());
const theme = computed(() => useSettingsStore().theme);
+const tagsIcon = computed(() => useSettingsStore().tagsIcon)
watch(route, () => {
addTags();
@@ -285,6 +287,9 @@ onMounted(() => {
}
}
}
+ .tags-view-item.active.has-icon::before {
+ content: none !important;
+ }
.contextmenu {
margin: 0;
background: var(--el-bg-color);
diff --git a/src/layout/components/TopBar/search.vue b/src/layout/components/TopBar/search.vue
index c50bb3c..9cb36db 100644
--- a/src/layout/components/TopBar/search.vue
+++ b/src/layout/components/TopBar/search.vue
@@ -67,7 +67,7 @@ const closeSearch = () => {
};
// 菜单搜索数据过滤
const menuSearch = (queryString: string, cb: (options: any[]) => void) => {
- let options = state.menuList.filter((item) => {
+ const options = state.menuList.filter((item) => {
return item.title.indexOf(queryString) > -1;
});
cb(options);
diff --git a/src/layout/components/notice/index.vue b/src/layout/components/notice/index.vue
index b287daf..684ae6a 100644
--- a/src/layout/components/notice/index.vue
+++ b/src/layout/components/notice/index.vue
@@ -24,10 +24,9 @@
diff --git a/src/views/login.vue b/src/views/login.vue
index eebde18..f641549 100644
--- a/src/views/login.vue
+++ b/src/views/login.vue
@@ -260,10 +260,9 @@ onMounted(() => {
background: #ffffff;
width: 400px;
padding: 25px 25px 5px 25px;
-
+ z-index: 1;
.el-input {
height: 40px;
-
input {
height: 40px;
}
diff --git a/src/views/manage/contract/index.vue b/src/views/manage/contract/index.vue
index 074efb5..fe1cff9 100644
--- a/src/views/manage/contract/index.vue
+++ b/src/views/manage/contract/index.vue
@@ -4,12 +4,12 @@
-
-
-
+
+
+
搜索
重置
@@ -40,10 +40,23 @@
-
-
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/monitor/logininfor/index.vue b/src/views/monitor/logininfor/index.vue
index d914544..da928cc 100644
--- a/src/views/monitor/logininfor/index.vue
+++ b/src/views/monitor/logininfor/index.vue
@@ -63,6 +63,7 @@
v-loading="loading"
:data="loginInfoList"
:default-sort="defaultSort"
+ border
@selection-change="handleSelectionChange"
@sort-change="handleSortChange"
>
diff --git a/src/views/monitor/online/index.vue b/src/views/monitor/online/index.vue
index 7a58bb7..b93325c 100644
--- a/src/views/monitor/online/index.vue
+++ b/src/views/monitor/online/index.vue
@@ -19,6 +19,7 @@
diff --git a/src/views/monitor/operlog/index.vue b/src/views/monitor/operlog/index.vue
index 0c64af4..dc66371 100644
--- a/src/views/monitor/operlog/index.vue
+++ b/src/views/monitor/operlog/index.vue
@@ -65,6 +65,7 @@
ref="operLogTableRef"
v-loading="loading"
:data="operlogList"
+ border
:default-sort="defaultSort"
@selection-change="handleSelectionChange"
@sort-change="handleSortChange"
diff --git a/src/views/operate/employee/index.vue b/src/views/operate/employee/index.vue
index 101e493..4163049 100644
--- a/src/views/operate/employee/index.vue
+++ b/src/views/operate/employee/index.vue
@@ -108,8 +108,8 @@
-
-
+
+
@@ -117,12 +117,12 @@
-
+
-
+
diff --git a/src/views/register.vue b/src/views/register.vue
index 447443c..8b3d6dc 100644
--- a/src/views/register.vue
+++ b/src/views/register.vue
@@ -203,7 +203,6 @@ onMounted(() => {
line-height: 0;
color: #7483a3;
}
-
}
.register-form {
diff --git a/src/views/system/client/index.vue b/src/views/system/client/index.vue
index 1f14b4c..0354d0d 100644
--- a/src/views/system/client/index.vue
+++ b/src/views/system/client/index.vue
@@ -45,7 +45,7 @@
-
+
@@ -300,7 +300,7 @@ const handleExport = () => {
/** 状态修改 */
const handleStatusChange = async (row: ClientVO) => {
- let text = row.status === '0' ? '启用' : '停用';
+ const text = row.status === '0' ? '启用' : '停用';
try {
await proxy?.$modal.confirm('确认要"' + text + '"吗?');
await changeStatus(row.clientId, row.status);
diff --git a/src/views/system/config/index.vue b/src/views/system/config/index.vue
index ddc0753..7401494 100644
--- a/src/views/system/config/index.vue
+++ b/src/views/system/config/index.vue
@@ -60,7 +60,7 @@
-
+
diff --git a/src/views/system/dept/index.vue b/src/views/system/dept/index.vue
index 191c8a0..56f4b17 100644
--- a/src/views/system/dept/index.vue
+++ b/src/views/system/dept/index.vue
@@ -42,6 +42,7 @@
v-loading="loading"
:data="deptList"
row-key="deptId"
+ border
:tree-props="{ children: 'children', hasChildren: 'hasChildren' }"
:default-expand-all="isExpandAll"
>
diff --git a/src/views/system/dict/data.vue b/src/views/system/dict/data.vue
index 215ed25..be5c87a 100644
--- a/src/views/system/dict/data.vue
+++ b/src/views/system/dict/data.vue
@@ -44,7 +44,7 @@
-
+
diff --git a/src/views/system/dict/index.vue b/src/views/system/dict/index.vue
index bfa8f72..c97b92e 100644
--- a/src/views/system/dict/index.vue
+++ b/src/views/system/dict/index.vue
@@ -53,7 +53,7 @@
-
+
diff --git a/src/views/system/menu/index.vue b/src/views/system/menu/index.vue
index a75edbe..67d3c19 100644
--- a/src/views/system/menu/index.vue
+++ b/src/views/system/menu/index.vue
@@ -30,6 +30,9 @@
展开/折叠
+
+ 级联删除
+
@@ -39,6 +42,7 @@
v-loading="loading"
:data="menuList"
row-key="menuId"
+ border
:tree-props="{ children: 'children', hasChildren: 'hasChildren' }"
:default-expand-all="isExpandAll"
>
@@ -129,8 +133,8 @@
- 是
- 否
+ 是
+ 否
@@ -207,8 +211,8 @@
- 缓存
- 不缓存
+ 缓存
+ 不缓存
@@ -225,7 +229,7 @@
- {{ dict.label }}
+ {{ dict.label }}
@@ -242,7 +246,7 @@
-
+
{{ dict.label }}
@@ -257,11 +261,31 @@
+
+
+
+
+
+
+