@jx3box/jx3box-common-ui 8.7.5 → 8.7.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
CHANGED
package/src/bread/AdminDrop.vue
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<el-dropdown-item v-if="hasPermission('create_system_message')" command="directMessage" icon="el-icon-message">
|
|
22
22
|
<span>私信</span>
|
|
23
23
|
</el-dropdown-item>
|
|
24
|
-
<el-dropdown-item v-if="
|
|
24
|
+
<el-dropdown-item v-if="hasPermission('manage_post_move') && showMove" command="onMoveToCommunity" icon="el-icon-refresh">
|
|
25
25
|
<span>转移</span>
|
|
26
26
|
</el-dropdown-item>
|
|
27
27
|
<el-dropdown-item icon="el-icon-upload" command="designTask" v-if="hasPermission('push_banner')">
|
|
@@ -81,9 +81,6 @@ export default {
|
|
|
81
81
|
};
|
|
82
82
|
},
|
|
83
83
|
computed: {
|
|
84
|
-
isEditor() {
|
|
85
|
-
return User.isEditor();
|
|
86
|
-
},
|
|
87
84
|
sourceId() {
|
|
88
85
|
if (this.isCommunity) {
|
|
89
86
|
return this.post?.id;
|
package/src/single/PostGuide.vue
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<span>下一篇</span>
|
|
13
13
|
<i class="el-icon-arrow-right"></i>
|
|
14
14
|
</a>
|
|
15
|
-
<a :href="getPostLink(post.
|
|
15
|
+
<a :href="getPostLink(post.next_post)" class="u-post-title">{{ getPostTitle(post.next_post) }}</a>
|
|
16
16
|
</div>
|
|
17
17
|
</div>
|
|
18
18
|
</template>
|