tangning 2 місяців тому
батько
коміт
5c75c82805

+ 1 - 0
src/locales/lang/json/ja.json

@@ -640,6 +640,7 @@
       "move": "いどう",
       "moveScene": "モバイルシーン",
       "moveSceneTitle": "フォルダ名を入力して素早く選択する",
+      "name": "名称",
       "num": "コード",
       "obj": "4DKK_Mega Obj",
       "objTips": {

+ 1 - 0
src/locales/lang/json/zh-CN.json

@@ -639,6 +639,7 @@
       "move": "移动",
       "moveScene": "移动场景",
       "moveSceneTitle": "输入文件夹名称快速选择",
+      "name": "名称",
       "num": "场景码",
       "obj": "四维深时obj",
       "objTips": {

+ 5 - 1
src/views/scenes/list.vue

@@ -313,7 +313,7 @@
         //   },
         // },
         {
-          title: t('routes.scenes.sceneName'),
+          title: t('routes.scenes.name'),
           dataIndex: 'sceneName',
           ellipsis: false,
           width: 120,
@@ -357,6 +357,10 @@
         {
           title: t('routes.scenes.num'),
           dataIndex: 'num',
+          customRender: ({ record }) => {
+            return record.isFolder ? '': record.num;
+
+          },
           width: 180,
         },
         {