@@ -27,7 +27,7 @@
>
-
{{ item.title }}
+
{{ $t(item.title) }}
-
+
-
+
@@ -116,19 +116,19 @@ const yamlNodeName = ref();
const infoDisabled = ref(true);
const yamlExpress = ref([
{
- title: $t('semantic.baseMessage'),
+ title:'semantic.baseMessage',
type: '',
name: '',
description: '',
},
{
- title: '输入内容',
+ title: 'app.inputContent',
type: 'yamlEdit',
yamlCode: '',
disabled: false,
},
{
- title: '输出内容',
+ title: 'app.outputContent',
type: 'yamlEdit',
yamlCode: '',
disabled: true,
--
Gitee
From 6ad1afdd834d502ed1aee75131481db4a9f5c3d2 Mon Sep 17 00:00:00 2001
From: cc500 <2014434568@qq.com>
Date: Tue, 27 May 2025 09:23:47 +0800
Subject: [PATCH 13/13] =?UTF-8?q?=20=E4=BF=AE=E6=94=B9=20private?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/createapp/components/PermissionControl.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/views/createapp/components/PermissionControl.vue b/src/views/createapp/components/PermissionControl.vue
index ef4288e..5fa7985 100644
--- a/src/views/createapp/components/PermissionControl.vue
+++ b/src/views/createapp/components/PermissionControl.vue
@@ -24,7 +24,7 @@ const permissionTypeList = [
value: 'public',
},
{
- label: 'app.permission_public',
+ label: 'app.permission_private',
value: 'private',
},
{
--
Gitee