From a009c8379a8bfb2345673a5f9685514988f11ae5 Mon Sep 17 00:00:00 2001 From: aixianling Date: Mon, 20 Mar 2023 18:06:26 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=BC=95=E5=AF=BC?= =?UTF-8?q?=E9=A1=B5=E8=AE=BE=E7=BD=AE=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/oms/apps/develop/AppDeployCustom/add.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/project/oms/apps/develop/AppDeployCustom/add.vue b/project/oms/apps/develop/AppDeployCustom/add.vue index ed91b34e..749f1e0a 100644 --- a/project/oms/apps/develop/AppDeployCustom/add.vue +++ b/project/oms/apps/develop/AppDeployCustom/add.vue @@ -113,6 +113,9 @@ + + + 添加 @@ -324,11 +327,12 @@ export default { sysInfo, appQRCode, customLogin, - base + base, + guide } } = this if (type == 'mp') { - this.form.extra = {tabBar, appId, embeddedAppIdList, isSingleService} + this.form.extra = {tabBar, appId, embeddedAppIdList, isSingleService, guide} } else if (type == 'web') { const {desc} = sysInfo sysInfo.desc = JSON.parse(desc || null) From 33831736a9a3c2cc31e0dc69642723a7ef5a3b23 Mon Sep 17 00:00:00 2001 From: aixianling Date: Tue, 21 Mar 2023 11:58:55 +0800 Subject: [PATCH 2/2] BUG 34 --- project/qujing/app/AppCurriculumManage/components/Comment.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/qujing/app/AppCurriculumManage/components/Comment.vue b/project/qujing/app/AppCurriculumManage/components/Comment.vue index 44754a29..5a30354a 100644 --- a/project/qujing/app/AppCurriculumManage/components/Comment.vue +++ b/project/qujing/app/AppCurriculumManage/components/Comment.vue @@ -84,7 +84,7 @@ }, show (id, isShow) { - this.$confirm(isShow === '1' ? '确定隐藏该留言?' : '确定隐藏该留言').then(() => { + this.$confirm(isShow === '1' ? '确定隐藏该评论?' : '确定隐藏该评论').then(() => { this.instance.post(`/app/appcoursecomment/configCommentById?id=${id}&status=${isShow === '1' ? '0' : '1'}`).then(res => { if (res.code == 0) { this.$message.success('操作成功')