gy-webcode2 2.0.2 → 2.0.4
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/components/breadcrumb.vue +5 -1
- package/css/layout.scss +9 -0
- package/css/modules/common.scss +4 -0
- package/index.js +6 -1
- package/package.json +15 -15
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="breadcrumb">
|
|
2
|
+
<div class="breadcrumb" :class="{bottomBorderShow:bottomBorderShow}">
|
|
3
3
|
<div class="row1" v-if="showRow1">
|
|
4
4
|
<div class="title ">
|
|
5
5
|
<span class="">{{menuPath.meta.headerMenuName}}</span>
|
|
@@ -59,6 +59,10 @@ export default {
|
|
|
59
59
|
position:{
|
|
60
60
|
type:String,
|
|
61
61
|
default:"default"
|
|
62
|
+
},
|
|
63
|
+
bottomBorderShow:{
|
|
64
|
+
type:Boolean,
|
|
65
|
+
default:true
|
|
62
66
|
}
|
|
63
67
|
},
|
|
64
68
|
data(){
|
package/css/layout.scss
CHANGED
|
@@ -30,6 +30,15 @@
|
|
|
30
30
|
//background: #F1F6FC;
|
|
31
31
|
border-radius: $radius;
|
|
32
32
|
//margin: $spacing $spacing $spacing 0;
|
|
33
|
+
.tabHide{
|
|
34
|
+
opacity: 0 !important;
|
|
35
|
+
transform: translateX(300%) !important;
|
|
36
|
+
}
|
|
37
|
+
.tabShow{
|
|
38
|
+
opacity: 1 !important;
|
|
39
|
+
transform: translateX(0) !important;
|
|
40
|
+
}
|
|
41
|
+
|
|
33
42
|
}
|
|
34
43
|
}
|
|
35
44
|
.contentBox{
|
package/css/modules/common.scss
CHANGED
|
@@ -161,6 +161,10 @@ a:hover{
|
|
|
161
161
|
.r_#{$i} {right:#{$i}px !important;}
|
|
162
162
|
|
|
163
163
|
.radius_#{$i} {border-radius:#{$i}px !important;}
|
|
164
|
+
.gap_#{$i} {gap:#{$i}px !important;}
|
|
165
|
+
.rowGap_#{$i} {row-gap:#{$i}px !important;}
|
|
166
|
+
.colGap_#{$i} {column-gap:#{$i}px !important;}
|
|
167
|
+
.lineHeight_#{$i} {line-height:#{$i}px !important;}
|
|
164
168
|
}
|
|
165
169
|
|
|
166
170
|
.mar_0{
|
package/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// npm publish 发布
|
|
2
2
|
// npm adduser 登录
|
|
3
3
|
// npm login 登录
|
|
4
|
+
// npm logout
|
|
4
5
|
// 添加镜像
|
|
5
6
|
//npm config set registry https://registry.npmmirror.com
|
|
6
7
|
// 删除镜像
|
|
@@ -10,6 +11,10 @@
|
|
|
10
11
|
// 清除缓存
|
|
11
12
|
// npm cache verify
|
|
12
13
|
|
|
14
|
+
// token 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
|
|
15
|
+
// npm config set //registry.npmjs.org/:_authToken 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
|
|
16
|
+
// npm config delete //registry.npmjs.org/:_authToken
|
|
17
|
+
|
|
13
18
|
// 版本号 x.y.z :
|
|
14
19
|
//其中z 表示一些小的bugfix, 更改z的号,
|
|
15
20
|
// y表示一些大的版本更改,比如一些API的变化
|
|
@@ -24,5 +29,5 @@
|
|
|
24
29
|
// 1.2.0 breadcrumb 使用store的menuPath了
|
|
25
30
|
// 2.0.0 全新UI改版
|
|
26
31
|
module.exports = {
|
|
27
|
-
version :'2.0.
|
|
32
|
+
version :'2.0.4',
|
|
28
33
|
}
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "gy-webcode2",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "gy前端公共代码",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
-
},
|
|
9
|
-
"author": "lizhi",
|
|
10
|
-
"license": "ISC",
|
|
11
|
-
"dependencies": {
|
|
12
|
-
"codemirror": "^5.48.0",
|
|
13
|
-
"crypto-js": "^3.1.0"
|
|
14
|
-
}
|
|
15
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "gy-webcode2",
|
|
3
|
+
"version": "2.0.4",
|
|
4
|
+
"description": "gy前端公共代码",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"author": "lizhi",
|
|
10
|
+
"license": "ISC",
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"codemirror": "^5.48.0",
|
|
13
|
+
"crypto-js": "^3.1.0"
|
|
14
|
+
}
|
|
15
|
+
}
|