@lambo-design/pro-layout 1.0.0-beta.212 → 1.0.0-beta.213
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lambo-design/pro-layout",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.213",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "lambo",
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"registry": "https://registry.npmjs.org/"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@lambo-design/
|
|
14
|
-
"@lambo-design/
|
|
13
|
+
"@lambo-design/shared": "^1.0.0-beta.115",
|
|
14
|
+
"@lambo-design/core": "^4.7.1-beta.118"
|
|
15
15
|
},
|
|
16
16
|
"scripts": {}
|
|
17
17
|
}
|
|
@@ -41,7 +41,7 @@ export default {
|
|
|
41
41
|
methods: {
|
|
42
42
|
initListener() {
|
|
43
43
|
Bus.$on('system-info',(data) => {
|
|
44
|
-
this.initSystemInfo();
|
|
44
|
+
this.initSystemInfo(data);
|
|
45
45
|
})
|
|
46
46
|
Bus.$on('nav-list', (data) => {
|
|
47
47
|
this.initNav(data)
|
|
@@ -160,6 +160,8 @@ export default {
|
|
|
160
160
|
}
|
|
161
161
|
|
|
162
162
|
/deep/ .ivu-menu-submenu {
|
|
163
|
+
background: var(--menu-dark-title, @_menu-dark-title);
|
|
164
|
+
color: var(--heading-color-dark, @_heading-color-dark);
|
|
163
165
|
.ivu-menu-submenu-title > i {
|
|
164
166
|
&.ivu-menu-submenu-title-icon {
|
|
165
167
|
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
<div v-for="(item,index) in menuData" :key="index" >
|
|
23
23
|
<div class="menu-side-style" @click="handleSelect(item)" @mouseenter="handleMouseEnter(index)" @mouseleave="handleMouseLeave(index)">
|
|
24
24
|
<div :style="getScrollingStyle(item.label)" class="text" :class="{ 'scrolling': isHovered[index] && shouldScroll(item.label) }">
|
|
25
|
-
<Icon :type="item.icon" style="margin-left: 10.6px;min-width:
|
|
26
|
-
<span style="margin-left:
|
|
25
|
+
<Icon :type="item.icon" style="margin-left: 10.6px;min-width: 14px" size="14"></Icon>
|
|
26
|
+
<span style="margin-left: 9.5px">{{ item.label }}</span>
|
|
27
27
|
</div>
|
|
28
28
|
</div>
|
|
29
29
|
</div>
|
|
@@ -159,6 +159,9 @@ export default {
|
|
|
159
159
|
width: 221px;
|
|
160
160
|
transform: translateX(-13px);
|
|
161
161
|
background-color: var(--menu-dark-active-bg ,@_menu-dark-active-bg );
|
|
162
|
+
/deep/.ivu-input-prefix{
|
|
163
|
+
top:1px;
|
|
164
|
+
}
|
|
162
165
|
}
|
|
163
166
|
/deep/.ivu-input{
|
|
164
167
|
font-size: 13px;
|
|
@@ -171,7 +174,7 @@ export default {
|
|
|
171
174
|
text-align:left; /* 确保文本默认左对齐 */
|
|
172
175
|
color: var(--menu-dark-subsidiary-color, @_menu-dark-subsidiary-color);
|
|
173
176
|
padding-right: 99px;
|
|
174
|
-
padding-left:
|
|
177
|
+
padding-left: 58px;
|
|
175
178
|
&::placeholder{
|
|
176
179
|
font-size: 14px;
|
|
177
180
|
font-weight: 400;
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
</Col>
|
|
12
12
|
<Col>
|
|
13
13
|
<div class="user-avatar-dropdown">
|
|
14
|
-
<Dropdown @on-click="handleClick">
|
|
14
|
+
<Dropdown @on-click="handleClick" :transfer="false">
|
|
15
15
|
<span>欢迎,{{ userInfo.userName }}</span>
|
|
16
16
|
<Icon type="ios-arrow-down"/>
|
|
17
17
|
<DropdownMenu v-if="userInfo.dropList.length > 0" slot="list">
|