feat:添加登录页面,完善文章目录

This commit is contained in:
橙子
2023-03-18 01:34:07 +08:00
parent 1bb7ce6805
commit c613b185da
8 changed files with 71 additions and 85 deletions

View File

@@ -125,11 +125,15 @@ const submit = async (formEl) => {
//主题创建
if (route.query.operType == "create") {
await discussAdd(discuss);
const response= await discussAdd(discuss);
var routerPer = { path: `/article/${response.id}` };
router.push(routerPer);
}
//主题更新
else if (route.query.operType == "update") {
await discussUpdate(route.query.discussId, discuss);
var routerPer = { path: `/article/${route.query.discussId}` };
router.push(routerPer);
}
}
@@ -142,16 +146,21 @@ const submit = async (formEl) => {
article.parentId=route.query.parentArticleId
//文章创建
if (route.query.operType == "create") {
await articleAdd(article);
const response= await articleAdd(article);
var routerPer = { path: `/article/${route.query.discussId}/${response.id}` };
router.push(routerPer);
}
//文章更新
else if (route.query.operType == "update") {
await articleUpdate(route.query.articleId, article);
var routerPer = { path: `/article/${route.query.discussId}/${route.query.articleId}` };
router.push(routerPer);
}
}
//添加成功后跳转到该页面
var routerPer = { path: `/discuss/${discuss.plateId}` };
router.push(routerPer);
// var routerPer = { path: `/discuss/${discuss.plateId}` };
// router.push(routerPer);
// ruleFormRef.value.resetFields();
// discuss.plateId = route.query.plateId;
}