From 9405957a2fb214a241ac48587ca373d89d7f517b Mon Sep 17 00:00:00 2001 From: jianxing Date: Mon, 26 Jun 2023 17:10:32 +0800 Subject: [PATCH] =?UTF-8?q?refactor(=E9=80=9A=E7=94=A8=E5=8A=9F=E8=83=BD):?= =?UTF-8?q?=20=E4=B8=AA=E4=BA=BA=E4=BF=A1=E6=81=AF=E7=9A=84=E7=AC=AC?= =?UTF-8?q?=E4=B8=89=E6=96=B9=E5=B9=B3=E5=8F=B0=E8=B4=A6=E5=8F=B7=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E6=94=B9=E4=B8=BA=E9=9D=9E=E5=BF=85=E5=A1=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1027177 --user=陈建星 【通用功能】用户组与权限-设置权限-个人信息-只勾选第三方平台账号-个人信息页面必填选项直接显示提示 https://www.tapd.cn/55049933/s/1386287 --- .../frontend/src/components/personal/PlatformAccountConfig.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/framework/sdk-parent/frontend/src/components/personal/PlatformAccountConfig.vue b/framework/sdk-parent/frontend/src/components/personal/PlatformAccountConfig.vue index bad3925651..a9f415fc37 100644 --- a/framework/sdk-parent/frontend/src/components/personal/PlatformAccountConfig.vue +++ b/framework/sdk-parent/frontend/src/components/personal/PlatformAccountConfig.vue @@ -75,6 +75,9 @@ export default { } }); this.rules = getPlatformFormRules(this.config); + for (const key in this.rules) { + this.rules[key].required = false; + } }, validate() { return new Promise((resolve, reject) => {