From 69ce48701145c3655d452be46981cc5cbc857860 Mon Sep 17 00:00:00 2001 From: yujiacong <1016029365@qq.com> Date: Mon, 13 Oct 2025 13:54:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=88=BF=E9=97=B4=E5=86=85=E8=A7=92=E6=A0=87?= =?UTF-8?q?=E5=85=A5=E5=8F=A3=20-=20=E7=BC=96=E8=BE=91=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E8=B4=A2=E5=AF=8C=E7=AD=89=E7=BA=A7=E9=99=90=E5=88=B6=E7=94=9F?= =?UTF-8?q?=E6=95=88=E8=8C=83=E5=9B=B4=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/resource/GamePlayView.vue | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/views/resource/GamePlayView.vue b/src/views/resource/GamePlayView.vue index 65ca931..daa1faa 100644 --- a/src/views/resource/GamePlayView.vue +++ b/src/views/resource/GamePlayView.vue @@ -163,6 +163,14 @@ label="可见用户" :formatter="ruleJsonFormatter" /> + + @@ -585,6 +593,8 @@ export default { if (!value) { if (key == 'NOT_CHANNELS' || key == 'NOT_UIDS') { value = '-'; + } else if (key == 'USER_LEVEL_LIMIT_ROLE') { + value = '全部用户'; } else { value = '全部'; } @@ -594,6 +604,9 @@ export default { } else if (key == 'ANDROID') { value = ruleObj['ANDROID_LOW_VERSION'] + '~' + ruleObj['ANDROID_HIGH_VERSION']; } + if (key == 'USER_LEVEL_LIMIT_ROLE') { + value = ruleObj['USER_LEVEL_LIMIT_ROLE']?ruleObj['USER_LEVEL_LIMIT_ROLE'] == 1?'全部用户':'非公会成员':'全部用户'; + } return value; }, getData () { @@ -689,7 +702,7 @@ export default { } this.resource.ruleValue[ruleCode] = rule; } - this.resource.ruleValue['USER_LEVEL_LIMIT_ROLE'] = this.resource.ruleValue['USER_LEVEL_LIMIT_ROLE'] ?"2":"1"; + this.resource.ruleValue['USER_LEVEL_LIMIT_ROLE'] = this.resource.ruleValue['USER_LEVEL_LIMIT_ROLE'] ?this.resource.ruleValue['USER_LEVEL_LIMIT_ROLE']:"1"; this.resource.partitionId = row.partitionId; this.editDialog = true; },