From 8e0a9287e947e9ee5cb7457425860887d76d1545 Mon Sep 17 00:00:00 2001 From: "xiaozhe.ma" Date: Tue, 10 Dec 2024 20:10:37 +0900 Subject: [PATCH] =?UTF-8?q?=E6=96=87=E8=A8=80=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/app/db/cruddb/dbapp.py | 2 +- frontend/src/pages/AppManagement.vue | 6 +++--- frontend/src/pages/TenantDomain.vue | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/backend/app/db/cruddb/dbapp.py b/backend/app/db/cruddb/dbapp.py index f1b3721..f9bfbad 100644 --- a/backend/app/db/cruddb/dbapp.py +++ b/backend/app/db/cruddb/dbapp.py @@ -151,7 +151,7 @@ class dbapp(crudbase): flow.flowid = flowhistory.flowid flow.eventid=flowhistory.eventid flow.name=flowhistory.name - flow.content=flow.content + flow.content=flowhistory.content flow.updateuserid=userid db.add(flow) db.commit() diff --git a/frontend/src/pages/AppManagement.vue b/frontend/src/pages/AppManagement.vue index 3a07975..9cdda9e 100644 --- a/frontend/src/pages/AppManagement.vue +++ b/frontend/src/pages/AppManagement.vue @@ -46,7 +46,7 @@ - + @@ -114,8 +114,8 @@ const deleteDialog = ref(false); const deleteUserLoading = ref(false); const actionList = [ - { label: '設定', icon: 'account_tree', action: toEditFlowPage }, - { label: '履歴', icon: 'history', action: showHistory }, + { label: 'フローの編集', icon: 'account_tree', action: toEditFlowPage }, + { label: 'バージョンの切替', icon: 'history', action: showHistory }, { separator: true }, { label: '削除', icon: 'delete_outline', class: 'text-red', action: removeRow }, ]; diff --git a/frontend/src/pages/TenantDomain.vue b/frontend/src/pages/TenantDomain.vue index 8d9cff9..7fbe76b 100644 --- a/frontend/src/pages/TenantDomain.vue +++ b/frontend/src/pages/TenantDomain.vue @@ -122,12 +122,12 @@ - ドメイン利用権限が存在し、キャンセルする必要がある + ドメインは使用中です。削除してもよろしいですか? - - + + @@ -196,7 +196,7 @@ const shareDg = ref(false); const shareDomain = ref({} as IDomainOwnerDisplay); const activeOptions = [ - { value: 0, label: '全状態' }, + { value: 0, label: 'すべて' }, { value: 1, label: '使用' }, { value: 2, label: '未使用'} ]