From f170dac781c24df5113095dec7d966eedcb89baf Mon Sep 17 00:00:00 2001 From: dhb52 Date: Wed, 12 Jun 2024 00:30:50 +0800 Subject: [PATCH] =?UTF-8?q?feat(sj=5F1.1.0):=20=E5=91=BD=E5=90=8D=E7=A9=BA?= =?UTF-8?q?=E9=97=B4=E5=88=97=E8=A1=A8=E9=A1=B5=E6=94=AF=E6=8C=81=E5=88=87?= =?UTF-8?q?=E6=8D=A2,=20=E6=96=B0=E5=A2=9E=E7=A9=BA=E9=97=B4=E7=94=9F?= =?UTF-8?q?=E6=88=90uid?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/iconify/material-symbols.json | 3 ++ src/locales/langs/en-us.ts | 2 + src/locales/langs/zh-cn.ts | 2 + src/typings/app.d.ts | 2 + src/views/namespace/index.vue | 41 +++++++++++++++++++ .../modules/namespace-operate-drawer.vue | 25 ++++++++--- 6 files changed, 70 insertions(+), 5 deletions(-) diff --git a/public/iconify/material-symbols.json b/public/iconify/material-symbols.json index ee6075d..d80490c 100644 --- a/public/iconify/material-symbols.json +++ b/public/iconify/material-symbols.json @@ -35,6 +35,9 @@ }, "sunny": { "body": "" + }, + "check-circle": { + "body": "" } } } diff --git a/src/locales/langs/en-us.ts b/src/locales/langs/en-us.ts index 67d45be..8530c8b 100644 --- a/src/locales/langs/en-us.ts +++ b/src/locales/langs/en-us.ts @@ -80,6 +80,8 @@ const local: App.I18n.Schema = { confirmPause: 'Are you sure you want to pause?', confirmFinish: 'Are you sure you want to finishe?', confirmRetry: 'Are you sure you want to retry?', + generateRandomly: 'Generate randomly', + active: 'Active', yesOrNo: { yes: 'Yes', no: 'No' diff --git a/src/locales/langs/zh-cn.ts b/src/locales/langs/zh-cn.ts index 1537028..58e9b78 100644 --- a/src/locales/langs/zh-cn.ts +++ b/src/locales/langs/zh-cn.ts @@ -80,6 +80,8 @@ const local: App.I18n.Schema = { confirmPause: '确认暂停吗?', confirmFinish: '确认完成吗?', confirmRetry: '确认重试吗?', + generateRandomly: '随机生成', + active: '活跃', yesOrNo: { yes: '是', no: '否' diff --git a/src/typings/app.d.ts b/src/typings/app.d.ts index 6d61178..045cd82 100644 --- a/src/typings/app.d.ts +++ b/src/typings/app.d.ts @@ -330,6 +330,8 @@ declare namespace App { confirmPause: string; confirmFinish: string; confirmRetry: string; + generateRandomly: string; + active: string; yesOrNo: { yes: string; no: string; diff --git a/src/views/namespace/index.vue b/src/views/namespace/index.vue index c2df3f7..ea19020 100644 --- a/src/views/namespace/index.vue +++ b/src/views/namespace/index.vue @@ -1,13 +1,27 @@