@jx3box/jx3box-common-ui 8.8.8 → 8.9.0
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 +1 -1
- package/src/App.vue +1 -1
- package/src/single/PostHeader.vue +8 -2
package/package.json
CHANGED
package/src/App.vue
CHANGED
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
<div class="u-meta u-sub-block">
|
|
44
44
|
<em class="u-label">适用客户端</em>
|
|
45
45
|
<span class="u-value u-client" :class="'i-client-' + client">{{ showClientLabel(client) }}</span>
|
|
46
|
+
<span class="u-value u-client i-client-wujie" v-if="is_wujie">无界</span>
|
|
46
47
|
</div>
|
|
47
48
|
|
|
48
49
|
<!-- 发布日期 -->
|
|
@@ -138,6 +139,9 @@ export default {
|
|
|
138
139
|
zlp: function () {
|
|
139
140
|
return this.post?.zlp || "";
|
|
140
141
|
},
|
|
142
|
+
is_wujie: function () {
|
|
143
|
+
return this.post?.is_wujie
|
|
144
|
+
},
|
|
141
145
|
},
|
|
142
146
|
watch: {
|
|
143
147
|
post: {
|
|
@@ -183,8 +187,10 @@ export default {
|
|
|
183
187
|
color: #0eb7ce;
|
|
184
188
|
}
|
|
185
189
|
.i-client-wujie {
|
|
186
|
-
border: 1px solid #
|
|
187
|
-
color: #
|
|
190
|
+
border: 1px solid #00dcda;
|
|
191
|
+
color: #3ae0f1;
|
|
192
|
+
background: #eff;
|
|
193
|
+
margin-left: 5px;
|
|
188
194
|
}
|
|
189
195
|
|
|
190
196
|
.m-single-header {
|