@jx3box/jx3box-vue3-ui 0.8.10 → 0.8.12
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/single/PostHeader.vue +24 -1
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.12",
|
|
4
4
|
"description": "JX3BOX Vue3 UI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@element-plus/icons-vue": "^2.1.0",
|
|
29
|
-
"@jx3box/jx3box-common": "^8.
|
|
29
|
+
"@jx3box/jx3box-common": "^8.3.1",
|
|
30
30
|
"@jx3box/jx3box-data": "^3.6.0",
|
|
31
31
|
"@jx3box/jx3box-emotion": "^1.2.8",
|
|
32
32
|
"@jx3box/jx3box-macro": "^1.0.1",
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
<template v-if="titleExtra">
|
|
17
17
|
<span class="u-client" :class="'i-client-' + client">{{ showClientLabel(client) }}</span>
|
|
18
18
|
<span class="u-client u-zlp" v-if="zlp">{{ zlp }}</span>
|
|
19
|
+
<span class="u-client i-client-wujie" v-if="is_wujie">无界</span>
|
|
19
20
|
</template>
|
|
20
21
|
</span>
|
|
21
22
|
</div>
|
|
@@ -43,7 +44,7 @@
|
|
|
43
44
|
<div class="u-meta u-sub-block">
|
|
44
45
|
<em class="u-label">适用客户端</em>
|
|
45
46
|
<span class="u-value u-client" :class="client">{{ showClientLabel(client) }}</span>
|
|
46
|
-
<span class="u-value u-client wujie">无界</span>
|
|
47
|
+
<span class="u-value u-client wujie" v-if="is_wujie">无界</span>
|
|
47
48
|
</div>
|
|
48
49
|
|
|
49
50
|
<!-- 发布日期 -->
|
|
@@ -138,6 +139,9 @@ export default {
|
|
|
138
139
|
client: function () {
|
|
139
140
|
return this.post?.client || "std";
|
|
140
141
|
},
|
|
142
|
+
is_wujie: function () {
|
|
143
|
+
return this.post?.is_wujie
|
|
144
|
+
},
|
|
141
145
|
},
|
|
142
146
|
watch: {
|
|
143
147
|
post: {
|
|
@@ -171,6 +175,25 @@ export default {
|
|
|
171
175
|
</script>
|
|
172
176
|
|
|
173
177
|
<style lang="less">
|
|
178
|
+
.i-client-all {
|
|
179
|
+
border: 1px solid #a26ef7;
|
|
180
|
+
color: #a26ef7;
|
|
181
|
+
}
|
|
182
|
+
.i-client-std {
|
|
183
|
+
border: 1px solid #f0b400;
|
|
184
|
+
color: #f0b400;
|
|
185
|
+
}
|
|
186
|
+
.i-client-origin {
|
|
187
|
+
border: 1px solid #0eb7ce;
|
|
188
|
+
color: #0eb7ce;
|
|
189
|
+
}
|
|
190
|
+
.i-client-wujie {
|
|
191
|
+
border: 1px solid #00dcda;
|
|
192
|
+
color: #3ae0f1;
|
|
193
|
+
background: #eff;
|
|
194
|
+
margin-left: 5px;
|
|
195
|
+
}
|
|
196
|
+
|
|
174
197
|
.m-single-header {
|
|
175
198
|
padding-top: 20px;
|
|
176
199
|
padding-bottom: 20px;
|