@jx3box/jx3box-vue3-ui 0.8.1 → 0.8.2
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 +4 -4
- package/src/bread/DesignTask.vue +1 -1
- package/src/comment/ReplyList.vue +0 -1
- package/src/editor/BoxResource.vue +1 -1
- package/src/editor/Resource.vue +1 -1
- package/src/filters/clientBy.vue +1 -1
- package/src/header/ClientSwitch.vue +1 -1
- package/src/single/PostHeader.vue +9 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jx3box/jx3box-vue3-ui",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.2",
|
|
4
4
|
"description": "JX3BOX Vue3 UI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@element-plus/icons-vue": "^2.1.0",
|
|
29
|
-
"@jx3box/jx3box-common": "^8.2.
|
|
30
|
-
"@jx3box/jx3box-data": "^3.
|
|
29
|
+
"@jx3box/jx3box-common": "^8.2.20",
|
|
30
|
+
"@jx3box/jx3box-data": "^3.6.0",
|
|
31
31
|
"@jx3box/jx3box-emotion": "^1.2.8",
|
|
32
32
|
"@jx3box/jx3box-macro": "^1.0.1",
|
|
33
33
|
"@jx3box/jx3box-talent": "^1.2.7",
|
|
@@ -83,4 +83,4 @@
|
|
|
83
83
|
"type": "git",
|
|
84
84
|
"url": "git+https://github.com/JX3BOX/jx3box-vue3-ui.git"
|
|
85
85
|
}
|
|
86
|
-
}
|
|
86
|
+
}
|
package/src/bread/DesignTask.vue
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
<div class="c-resource-content" v-loading="loading">
|
|
11
11
|
<div class="m-database-search">
|
|
12
12
|
<el-radio-group class="u-client" v-model="comboClient" @change="search" v-if="type === 'combo'">
|
|
13
|
-
<el-radio-button label="std"
|
|
13
|
+
<el-radio-button label="std">剑三</el-radio-button>
|
|
14
14
|
<el-radio-button label="origin">缘起</el-radio-button>
|
|
15
15
|
</el-radio-group>
|
|
16
16
|
<el-input
|
package/src/editor/Resource.vue
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
<div class="c-resource-content" v-loading="loading">
|
|
11
11
|
<div class="m-database-search">
|
|
12
12
|
<el-radio-group class="u-client" v-model="client" @change="search">
|
|
13
|
-
<el-radio-button label="std"
|
|
13
|
+
<el-radio-button label="std">剑三</el-radio-button>
|
|
14
14
|
<el-radio-button label="origin">缘起</el-radio-button>
|
|
15
15
|
</el-radio-group>
|
|
16
16
|
<el-input
|
package/src/filters/clientBy.vue
CHANGED
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
<el-icon v-if="post.post_status == 'dustbin'" color="#c00"><Delete></Delete></el-icon>
|
|
14
14
|
</i>
|
|
15
15
|
<span class="u-title-text">{{ title }}</span>
|
|
16
|
+
<template v-if="titleExtra">
|
|
17
|
+
<span class="u-client" :class="'i-client-' + client">{{ showClientLabel(client) }}</span>
|
|
18
|
+
<span class="u-client u-zlp" v-if="zlp">{{ zlp }}</span>
|
|
19
|
+
</template>
|
|
16
20
|
</span>
|
|
17
21
|
</div>
|
|
18
22
|
|
|
@@ -39,6 +43,7 @@
|
|
|
39
43
|
<div class="u-meta u-sub-block">
|
|
40
44
|
<em class="u-label">适用客户端</em>
|
|
41
45
|
<span class="u-value u-client" :class="client">{{ showClientLabel(client) }}</span>
|
|
46
|
+
<span class="u-value u-client wujie">无界</span>
|
|
42
47
|
</div>
|
|
43
48
|
|
|
44
49
|
<!-- 发布日期 -->
|
|
@@ -261,8 +266,10 @@ export default {
|
|
|
261
266
|
}
|
|
262
267
|
|
|
263
268
|
&.wujie{
|
|
264
|
-
border: 1px solid
|
|
265
|
-
color:
|
|
269
|
+
border: 1px solid #00dcda;
|
|
270
|
+
color: #3ae0f1;
|
|
271
|
+
background: #eff;
|
|
272
|
+
margin-left: 5px;
|
|
266
273
|
}
|
|
267
274
|
|
|
268
275
|
&.all {
|