@jx3box/jx3box-common-ui 7.8.5 → 7.8.7
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/bread/Admin.vue +3 -4
- package/src/single/Collection.vue +1 -1
package/package.json
CHANGED
package/src/App.vue
CHANGED
package/src/bread/Admin.vue
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<div class="c-admin-wrapper">
|
|
13
13
|
<!-- <template v-if="isAdmin"> -->
|
|
14
14
|
<el-divider content-position="left">状态变更</el-divider>
|
|
15
|
-
<el-radio-group v-model="post_status"
|
|
15
|
+
<el-radio-group v-model="post_status" class="c-admin-status">
|
|
16
16
|
<el-radio-button v-for="(option, key) in status_options" :label="key" :key="key">{{
|
|
17
17
|
option
|
|
18
18
|
}}</el-radio-button>
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<!-- </template> -->
|
|
21
21
|
|
|
22
22
|
<el-divider content-position="left">可见性变更</el-divider>
|
|
23
|
-
<el-radio-group v-model="visible"
|
|
23
|
+
<el-radio-group v-model="visible" class="c-admin-status">
|
|
24
24
|
<el-radio-button v-for="(option, key) in visible_options" :label="key" :key="key">{{
|
|
25
25
|
option
|
|
26
26
|
}}</el-radio-button>
|
|
@@ -39,7 +39,6 @@
|
|
|
39
39
|
class="c-admin-highlight-block"
|
|
40
40
|
v-model="color"
|
|
41
41
|
:predefine="color_options"
|
|
42
|
-
size="mini"
|
|
43
42
|
></el-color-picker>
|
|
44
43
|
<span class="c-admin-highlight-preview" :style="{ color: color }">预览高亮效果</span>
|
|
45
44
|
</template>
|
|
@@ -57,7 +56,7 @@
|
|
|
57
56
|
<img v-if="post_banner" :src="post_banner" />
|
|
58
57
|
<i class="el-icon-plus"></i>
|
|
59
58
|
</el-upload>
|
|
60
|
-
<el-input class="u-banner" v-model="post_banner"
|
|
59
|
+
<el-input class="u-banner" v-model="post_banner">
|
|
61
60
|
<span slot="prepend">海报地址</span>
|
|
62
61
|
<span slot="append">
|
|
63
62
|
<span class="u-btn" @click="removeBanner"> <i class="el-icon-circle-close"></i> 移除海报 </span>
|