@jx3box/jx3box-common-ui 8.1.2 → 8.1.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/package.json +2 -2
- package/src/header/nav.vue +2 -2
- package/src/single/PostHeader.vue +18 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jx3box/jx3box-common-ui",
|
|
3
|
-
"version": "8.1.
|
|
3
|
+
"version": "8.1.4",
|
|
4
4
|
"description": "JX3BOX UI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@jx3box/jx3box-comment-ui": "^1.8.7",
|
|
34
|
-
"@jx3box/jx3box-common": "^8.2.
|
|
34
|
+
"@jx3box/jx3box-common": "^8.2.2",
|
|
35
35
|
"@jx3box/jx3box-data": "^3.5.6",
|
|
36
36
|
"@jx3box/jx3box-editor": "^2.1.4",
|
|
37
37
|
"@jx3box/reporter": "^0.0.4",
|
package/src/header/nav.vue
CHANGED
|
@@ -137,8 +137,8 @@ const activeNav = {
|
|
|
137
137
|
tool: ['app', 'jx3dat', 'dbm', 'tool'],
|
|
138
138
|
bps: ['bps', 'jcl', 'battle'],
|
|
139
139
|
fb: ['fb','baizhan','team', 'jdt', 'rank'],
|
|
140
|
-
|
|
141
|
-
pvx: ['face', 'adventure', 'pvg', 'pvx', 'homeland', 'pet', 'horse', 'furniture', 'reputation', 'book', 'exam'],
|
|
140
|
+
cj: ['wiki', 'item', 'knowledge', 'quest', 'cj'],
|
|
141
|
+
pvx: ['face', 'adventure', 'pvg', 'pvx', 'homeland', 'pet', 'horse', 'furniture', 'reputation', 'book', 'exam', 'body'],
|
|
142
142
|
bbs: ['bbs','topic', 'emotion', 'joke', 'namespace', 'collection'],
|
|
143
143
|
pvp: ['pvp']
|
|
144
144
|
}
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
<!-- 客户端 -->
|
|
35
35
|
<div class="u-meta u-sub-block">
|
|
36
36
|
<em class="u-label">适用客户端</em>
|
|
37
|
-
<span class="u-value u-client" :class="client">{{ showClientLabel(client) }}</span>
|
|
37
|
+
<span class="u-value u-client" :class="'i-client-' + client">{{ showClientLabel(client) }}</span>
|
|
38
38
|
</div>
|
|
39
39
|
|
|
40
40
|
<!-- 发布日期 -->
|
|
@@ -155,6 +155,23 @@ export default {
|
|
|
155
155
|
</script>
|
|
156
156
|
|
|
157
157
|
<style lang="less">
|
|
158
|
+
.i-client-all{
|
|
159
|
+
border: 1px solid #a26ef7;
|
|
160
|
+
color: #a26ef7;
|
|
161
|
+
}
|
|
162
|
+
.i-client-std{
|
|
163
|
+
border: 1px solid #f0b400;
|
|
164
|
+
color: #f0b400;
|
|
165
|
+
}
|
|
166
|
+
.i-client-origin{
|
|
167
|
+
border: 1px solid #0eb7ce;
|
|
168
|
+
color: #0eb7ce;
|
|
169
|
+
}
|
|
170
|
+
.i-client-wujie{
|
|
171
|
+
border: 1px solid #fc79bf;
|
|
172
|
+
color: #fc79bf;
|
|
173
|
+
}
|
|
174
|
+
|
|
158
175
|
.m-single-header {
|
|
159
176
|
padding-top: 20px;
|
|
160
177
|
padding-bottom: 20px;
|
|
@@ -233,10 +250,6 @@ export default {
|
|
|
233
250
|
.fz(12px, 20px);
|
|
234
251
|
color: #666;
|
|
235
252
|
|
|
236
|
-
@origin: #0eb7ce;
|
|
237
|
-
@std: #f0b400;
|
|
238
|
-
@all: #a26ef7;
|
|
239
|
-
|
|
240
253
|
.u-client {
|
|
241
254
|
// .fl;
|
|
242
255
|
font-style: normal;
|
|
@@ -244,21 +257,6 @@ export default {
|
|
|
244
257
|
padding: 0px 5px;
|
|
245
258
|
.r(3px);
|
|
246
259
|
// .mr(10px);
|
|
247
|
-
|
|
248
|
-
&.std {
|
|
249
|
-
border: 1px solid @std;
|
|
250
|
-
color: @std;
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
&.origin {
|
|
254
|
-
border: 1px solid @origin;
|
|
255
|
-
color: @origin;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
&.all {
|
|
259
|
-
border: 1px solid @all;
|
|
260
|
-
color: @all;
|
|
261
|
-
}
|
|
262
260
|
}
|
|
263
261
|
|
|
264
262
|
* {
|