Handy_Cao 6 ماه پیش
والد
کامیت
c6612dedc0

+ 24 - 16
public/locales/en-US.json

@@ -264,12 +264,20 @@
         "sys_config": {}
     },
     "base": {
+        "banner": {
+            "title": "标题",
+            "sort": "排序",
+            "isshow": "是否展示",
+            "imagepath": "图片",
+            "updatedate": "更新时间",
+            "imagetype": "图片类型"
+        },
         "errorcode": {
-            "errorid": "错误号",
-            "errorcode": "错误代码",
-            "operatecode": "所属操作参数",
-            "description": "错误描述",
-            "placeholder": "精确匹配"
+            "errorid": "Error ID",
+            "errorcode": "Errod Code",
+            "operatecode": "Operate Code",
+            "description": "Description",
+            "placeholder": "Precise matching"
         },
         "sys_params": {
             "paramcode": "参数代码",
@@ -293,7 +301,7 @@
         "baseinfo": "Basic Information",
         "extendinfo": "Extended Information",
         "pleasechoicedate": "Please Select Date",
-        "placeholder": "模糊匹配",
+        "placeholder": "Fuzzy matching",
         "alert": "Alert",
         "annex": "Attachment",
         "annex1": "Attachment 1",
@@ -3423,11 +3431,11 @@
     },
     "system": {
         "client_log": {
-            "logincode": "登录账号",
-            "accountname": "客户名称",
-            "areaname": "所属机构",
-            "membername": "所属会员",
-            "loginip": "登录IP",
+            "logincode": "Login Code",
+            "accountname": "Account Name",
+            "areaname": "Area Name",
+            "membername": "Member Name",
+            "loginip": "Login IP",
             "logintype": "登录/登出",
             "operatetime": "时间",
             "loginretcode": "结果",
@@ -3436,11 +3444,11 @@
             "details": {
                 "title": "详细信息",
                 "subtitle": "终端登录日志信息",
-                "logincode": "登录账号",
-                "accountname": "客户名称",
-                "areaname": "所属机构",
-                "membername": "所属会员",
-                "loginip": "登录IP",
+                "logincode": "Login Code",
+                "accountname": "Account Name",
+                "areaname": "Area Name",
+                "membername": "Member Name",
+                "loginip": "Login IP",
                 "funcode": "登录/登出",
                 "operatetime": "时间",
                 "loginflowno": "结果",

+ 8 - 0
public/locales/th-TH.json

@@ -264,6 +264,14 @@
         "sys_config": {}
     },
     "base": {
+        "banner": {
+            "title": "标题",
+            "sort": "排序",
+            "isshow": "是否展示",
+            "imagepath": "图片",
+            "updatedate": "更新时间",
+            "imagetype": "图片类型"
+        },
         "errorcode": {
             "errorid": "错误号",
             "errorcode": "错误代码",

+ 8 - 0
public/locales/vi-VN.json

@@ -264,6 +264,14 @@
         "sys_config": {}
     },
     "base": {
+        "banner": {
+            "title": "标题",
+            "sort": "排序",
+            "isshow": "是否展示",
+            "imagepath": "图片",
+            "updatedate": "更新时间",
+            "imagetype": "图片类型"
+        },
         "errorcode": {
             "errorid": "错误号",
             "errorcode": "错误代码",

+ 8 - 0
public/locales/zh-CN.json

@@ -264,6 +264,14 @@
         "sys_config": {}
     },
     "base": {
+        "banner": {
+            "title": "标题",
+            "sort": "排序",
+            "isshow": "是否展示",
+            "imagepath": "图片",
+            "updatedate": "更新时间",
+            "imagetype": "图片类型"
+        },
         "errorcode": {
             "errorid": "错误号",
             "errorcode": "错误代码",

+ 8 - 0
public/locales/zh-TW.json

@@ -264,6 +264,14 @@
         "sys_config": {}
     },
     "base": {
+        "banner": {
+            "title": "标题",
+            "sort": "排序",
+            "isshow": "是否展示",
+            "imagepath": "图片",
+            "updatedate": "更新时间",
+            "imagetype": "图片类型"
+        },
         "errorcode": {
             "errorid": "错误号",
             "errorcode": "错误代码",

+ 8 - 8
src/packages/pc/views/base/banner/index.vue

@@ -61,11 +61,11 @@ const { dataList, total, pageSize, pageIndex, loading, run } = useRequest(queryp
 })
 
 const tableColumns = ref<Model.TableColumn[]>([
-    { field: 'title', label: '标题' },
-    { field: 'sort', label: '排序' },
-    { field: 'isshow', label: '是否展示', formatValue: (val) => flagEnum.getEnumTypeName(val) },
-    { field: 'imagepath', label: '图片', },
-    { field: 'updatedate', label: '更新时间', formatValue: (val) => formatDate(val) },
+    { field: 'title', label: 'base.banner.title' },
+    { field: 'sort', label: 'base.banner.sort' },
+    { field: 'isshow', label: 'base.banner.isshow', formatValue: (val) => flagEnum.getEnumTypeName(val) },
+    { field: 'imagepath', label: 'base.banner.imagepath', },
+    { field: 'updatedate', label: 'base.banner.updatedate', formatValue: (val) => formatDate(val) },
     { field: 'operate', label: 'common.operate', fixed: 'right' }
 ])
 
@@ -73,17 +73,17 @@ const { filterOption, getQueryParams, resetFilters } = useDataFilter<Base.Pictur
     filters: [
         {
             field: 'imagetype',
-            label: '图片类型',
+            label: t('base.banner.imagetype'),
             options: () => imagetypeEnum.getEnumOptions()
         },
         {
             field: 'title',
-            label: '标题',
+            label: t('base.banner.title'),
             placeholder: t('common.placeholder'),
         },
         {
             field: 'isshow',
-            label: '是否展示',
+            label: t('base.banner.isshow'),
             options: () => flagEnum.getEnumOptions()
         }
     ],

+ 3 - 3
src/packages/pc/views/base/errorcode/index.vue

@@ -61,17 +61,17 @@ const { filterOption, getQueryParams, resetFilters } = useDataFilter<Base.ErrorR
     filters: [
         {
             field: 'errorid',
-            label: '错误号',
+            label: t('base.errorcode.errorid'),
             placeholder: t('base.errorcode.placeholder'),
         },
         {
             field: 'errorcode',
-            label: '错误代码',
+            label: t('base.errorcode.errorcode'),
             placeholder: t('common.placeholder'),
         },
         {
             field: 'description',
-            label: '错误描述',
+            label: t('base.errorcode.description'),
             placeholder: t('common.placeholder'),
         }
     ],