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

!24 feat(restrict-read): 实现文章限制阅读功能

* feat(restrict-read): 实现文章限制阅读功能
* Merge remote-tracking branch 'origin/v2.0-beta' into v2.0-beta
* feat(restrict-read): 实现文章限制阅读功能
This commit is contained in:
liuyiwuqing
2025-06-13 03:38:44 +00:00
zatwierdzone przez 小莫唐尼
rodzic 256bc0e00f
commit e8d13c674f
9 zmienionych plików z 635 dodań i 339 usunięć
+2 -2
Wyświetl plik
@@ -192,7 +192,7 @@ export default {
this.$httpApi.v2.submitLink(this.form)
.then(res => {
if (res.code === 200) {
uni.$tm.toast('友链提交成功!');
uni.$tm.toast(res.msg);
setTimeout(() => {
uni.navigateTo({
url: '/pagesA/friend-links/friend-links',
@@ -204,7 +204,7 @@ export default {
});
}, 1000);
} else {
uni.$tm.toast('操作失败,请重试!');
uni.$tm.toast(res.msg);
}
})
.catch(err => {