From 2983e43a9a3cb7c10dd6f31206add6a0feade74f Mon Sep 17 00:00:00 2001 From: li Date: Sun, 31 May 2026 20:34:05 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=AD=B9=E7=A0=81=E6=A0=8F=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E6=98=BE=E7=A4=BA=E5=85=A8=E9=83=A813=E6=A1=A3?= =?UTF-8?q?=E9=9D=A2=E5=80=BC,=E5=B7=A6=E5=8F=B3=E6=BB=91=E5=8A=A8?= =?UTF-8?q?=E9=80=89=E6=8B=A9,=E5=8E=BB=E6=8E=89=E6=9C=80=E5=A4=9A6?= =?UTF-8?q?=E4=B8=AA=E4=B8=8A=E9=99=90(=E4=BF=9D=E7=95=99=E7=AD=B9?= =?UTF-8?q?=E7=A0=81=E8=AE=BE=E7=BD=AE)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 2 -- src/store/modules/config.js | 14 +++++++------- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/src/App.vue b/src/App.vue index 10bfbfc5..9efa80a2 100644 --- a/src/App.vue +++ b/src/App.vue @@ -383,8 +383,6 @@ export default { const list = chipArry.value.filter((v) => v.show == true) if (item.show && list.length == 1) { showToast(Lang.value[Type.value].cannot_less_one) - } else if (!item.show && list.length > 5) { - showToast(Lang.value[Type.value].no_more_6) } else { item.show = !item.show } diff --git a/src/store/modules/config.js b/src/store/modules/config.js index 9e43854b..ee6fa77a 100644 --- a/src/store/modules/config.js +++ b/src/store/modules/config.js @@ -46,13 +46,13 @@ const state = { { key: "100k", show: true, value: 100000 }, { key: "200k", show: true, value: 200000 }, { key: "500k", show: true, value: 500000 }, - { key: "1000k", show: false, value: 1000000 }, - { key: "2000k", show: false, value: 2000000 }, - { key: "5000k", show: false, value: 5000000 }, - { key: "10000k", show: false, value: 10000000 }, - { key: "20000k", show: false, value: 20000000 }, - { key: "50000k", show: false, value: 50000000 }, - { key: "100000k", show: false, value: 100000000 } + { key: "1000k", show: true, value: 1000000 }, + { key: "2000k", show: true, value: 2000000 }, + { key: "5000k", show: true, value: 5000000 }, + { key: "10000k", show: true, value: 10000000 }, + { key: "20000k", show: true, value: 20000000 }, + { key: "50000k", show: true, value: 50000000 }, + { key: "100000k", show: true, value: 100000000 } ], soundList: {}, online: false,