@jx3box/jx3box-common-ui 8.8.2 → 8.8.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
CHANGED
package/src/bread/DesignTask.vue
CHANGED
|
@@ -147,6 +147,7 @@ export default {
|
|
|
147
147
|
data.star = this.form.star;
|
|
148
148
|
data.subtype = this.form.type;
|
|
149
149
|
data.version = this.form.version;
|
|
150
|
+
data.client = data.client == 'origin' ? 'origin' : 'std';
|
|
150
151
|
|
|
151
152
|
data.source_type = this.post?.post_type;
|
|
152
153
|
data.source_id = String(this.post?.ID);
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<span class="u-title-text">{{ title }}</span>
|
|
16
16
|
<template v-if="titleExtra">
|
|
17
17
|
<span class="u-client" :class="'i-client-' + client">{{ showClientLabel(client) }}</span>
|
|
18
|
-
<span class="u-client u-zlp">{{ zlp }}</span>
|
|
18
|
+
<span class="u-client u-zlp" v-if="zlp">{{ zlp }}</span>
|
|
19
19
|
</template>
|
|
20
20
|
</span>
|
|
21
21
|
</div>
|
|
@@ -358,11 +358,10 @@ export default {
|
|
|
358
358
|
.r(3px);
|
|
359
359
|
line-height: 20px;
|
|
360
360
|
.dbi;
|
|
361
|
-
margin-left:
|
|
361
|
+
margin-left: 5px;
|
|
362
362
|
}
|
|
363
363
|
|
|
364
364
|
.u-zlp {
|
|
365
|
-
background-color: #eee;
|
|
366
365
|
border: 1px solid #fa80a2;
|
|
367
366
|
color: #fa80a2;
|
|
368
367
|
}
|