module-menu-vue 0.3.33 → 0.3.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1783048341714" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9473" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32"><path d="M892.68 525.89c0.38-0.77 0.71-1.54 1.03-2.34 0.36-0.93 0.65-1.88 0.92-2.83a30.5 30.5 0 0 0 0.94-4.62c0.11-0.89 0.24-1.78 0.28-2.68 0.02-0.49 0.15-0.95 0.15-1.44 0-0.66-0.15-1.28-0.19-1.93a35.76 35.76 0 0 0-0.18-1.81c-0.13-1.02-0.24-2.04-0.47-3.03a31.5 31.5 0 0 0-1.37-4.7c-0.08-0.22-0.12-0.45-0.21-0.67a31.5 31.5 0 0 0-2.42-4.59c-0.2-0.32-0.33-0.67-0.54-0.99a31.93 31.93 0 0 0-4.04-4.95l-0.01-0.02-191.9-191.9a31.99 31.99 0 1 0-45.25 45.25l137.32 137.32H352a32 32 0 1 0 0 64h434.65L649.27 681.35a31.99 31.99 0 0 0 22.63 54.63c8.2 0 16.38-3.12 22.63-9.38l191.53-191.53 0.52-0.52c1.24-1.24 2.33-2.56 3.32-3.93 0.36-0.49 0.64-1.03 0.98-1.55 0.66-1.03 1.27-2.09 1.8-3.18z" fill="#333333" p-id="9474"></path><path d="M608 832H224a32.03 32.03 0 0 1-32-32V224c0-17.65 14.36-32 32-32h384a32 32 0 1 0 0-64H224c-52.94 0-96.01 43.07-96.01 96V800c0 52.93 43.07 96 96.01 96h384a32 32 0 1 0 0-64z" fill="#333333" p-id="9475"></path></svg>
|
|
@@ -176,7 +176,7 @@ export default {
|
|
|
176
176
|
let logoAndTitle = { logoSrc: "", title: "" };
|
|
177
177
|
if (sysInfo) {
|
|
178
178
|
logoAndTitle.logoSrc = sysInfo.logoSrc;
|
|
179
|
-
logoAndTitle.title = sysInfo.title;
|
|
179
|
+
logoAndTitle.title = this.xiangtan ? '应用系统配置' : sysInfo.title;
|
|
180
180
|
}
|
|
181
181
|
return logoAndTitle;
|
|
182
182
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div className="right">
|
|
3
|
-
<el-dropdown v-show="getName()" @command="handleClickmenu">
|
|
3
|
+
<el-dropdown v-show="getName()" @command="handleClickmenu" :popper-append-to-body="false">
|
|
4
4
|
<span class="el-dropdown-link">
|
|
5
5
|
<img :src="stash === 'HBJK' ? require('../../assets/userLogo1.png') : require('../../assets/userLogo.svg')" style="vertical-align:middle;padding-right:10px; width: 40px"/>
|
|
6
6
|
<span :style="{color: stash === 'LNRD' || stash === 'HBJK' ? '#fff' : '#000000d9'}">{{getName()}}</span>
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
</el-dropdown-item>
|
|
18
18
|
<el-dropdown-item v-show="isShowAppFinal" command="app">
|
|
19
19
|
<img :src="appSystemSrc" alt="" class="menuItem" />
|
|
20
|
-
<span
|
|
20
|
+
<span>{{ xiangtan ? '应用系统配置' : '数据源管理' }}</span>
|
|
21
21
|
</el-dropdown-item>
|
|
22
22
|
<el-dropdown-item command="logout">
|
|
23
23
|
<img :src="LogoutSrc" alt="" class="menuItem" />
|
|
@@ -162,7 +162,7 @@ export default {
|
|
|
162
162
|
if (flag === 'single') {
|
|
163
163
|
if (this.isBigDataFoundationPlatform) {
|
|
164
164
|
url = '/admin-ui/user/profile'
|
|
165
|
-
} else if (["integration", 'LNRD', 'HBJK'].includes(this.stash)
|
|
165
|
+
} else if (["integration", 'LNRD', 'HBJK'].includes(this.stash)) {
|
|
166
166
|
url = '/admin-ui/data-share-portal/personal/info'
|
|
167
167
|
} else if (this.stash === "GZW") {
|
|
168
168
|
url = '/data-platform/#/info/index'
|
|
@@ -287,7 +287,7 @@ export default {
|
|
|
287
287
|
.menuItem {
|
|
288
288
|
margin-right: 10px;
|
|
289
289
|
margin-top: 10px;
|
|
290
|
-
vertical-align:
|
|
290
|
+
vertical-align: middle;
|
|
291
291
|
}
|
|
292
292
|
.el-dropdown-menu{
|
|
293
293
|
width: 145px;
|
|
@@ -298,7 +298,8 @@ export default {
|
|
|
298
298
|
font-size: 13px;
|
|
299
299
|
}
|
|
300
300
|
.el-dropdown-menu__item img {
|
|
301
|
-
width:
|
|
301
|
+
width: 14px;
|
|
302
|
+
height: 14px;
|
|
302
303
|
}
|
|
303
304
|
.el-dropdown-link{
|
|
304
305
|
font-weight: 400;
|
|
@@ -4,9 +4,9 @@ export const userMenuIcon = {
|
|
|
4
4
|
MessageCenterSrc:require('../../assets/messageCenter.svg'),
|
|
5
5
|
SystemManageSrc:require('../../assets/systemManage.svg'),
|
|
6
6
|
appSystemSrc:require('../../assets/appSystem.svg'),
|
|
7
|
-
LogoutSrc:require('../../assets/logout.
|
|
7
|
+
LogoutSrc:require('../../assets/logout.svg'),
|
|
8
8
|
}
|
|
9
9
|
export const PersonalCenterSrc = require('../../assets/personalCenter.svg');
|
|
10
10
|
export const MessageCenterSrc = require('../../assets/messageCenter.svg');
|
|
11
11
|
export const SystemManageSrc = require('../../assets/systemManage.svg');
|
|
12
|
-
export const LogoutSrc = require('../../assets/logout.
|
|
12
|
+
export const LogoutSrc = require('../../assets/logout.svg');
|
package/src/assets/logout.png
DELETED
|
Binary file
|