1
0
mirror of https://github.com/ialley-workshop-open/uni-halo.git synced 2026-06-12 13:19:31 +08:00

修复:后台管理文章设置BUG;

修复:友链列表不显示数据BUG;
修复:应用设置点击返回,触发提示BUG;
This commit is contained in:
小莫唐尼
2022-12-09 10:48:00 +08:00
parent 3702cb1618
commit 3fd3b2247a
6 changed files with 13 additions and 15 deletions
+2 -2
View File
@@ -540,10 +540,10 @@ export default {
if (this.form.id) {
this.$Router.push({
path: '/pagesB/articles/article-setting',
query: { postsId: this.form.id, postTitle: this.form.title, isEdit: true, from: 'edit' }
query: { postsId: this.form.id, postTitle: this.form.title, isEdit: 1, from: 'edit' }
});
} else {
this.$Router.push({ path: '/pagesB/articles/article-setting', query: { postsId: '', postTitle: '', isEdit: false, from: 'edit' } });
this.$Router.push({ path: '/pagesB/articles/article-setting', query: { postsId: '', postTitle: '', isEdit: 0, from: 'edit' } });
}
return;