Browse Source

系统设置-外链配置

jwyu 1 năm trước cách đây
mục cha
commit
5f837abf5b

+ 31 - 0
src/lang/modules/systemManage/OutLinkConfig.js

@@ -0,0 +1,31 @@
+/**
+ * 系统设置-外部链接配置
+ */
+
+/* 英文 */
+export const OutLinkConfigEn = {
+    menu_add_btn:'Add menu',
+    menu_edit_btn:'Edit menu',
+    tale_col01:'Menu Name',
+    tale_col02:'Page Link',
+    tale_col03:'Creation Time',
+    placeholder01:'请输入菜单名称',
+    placeholder02:'请输入URL',
+    del_success_msg:'Delete menu successfully'
+};
+  
+/* 中文 */
+export const OutLinkConfigZh = {
+    menu_add_btn:'添加菜单',
+    menu_edit_btn:'编辑菜单',
+    tale_col01:'菜单名称',
+    tale_col02:'页面链接',
+    tale_col03:'创建时间',
+    placeholder01:'Please enter menu name',
+    placeholder02:'Please enter URL',
+    del_success_msg:'删除菜单成功'
+};
+  
+/**
+* $t('SystemManage.OutLinkConfig.XXX')
+*/

+ 3 - 1
src/lang/modules/systemManage/indexEn.js

@@ -4,6 +4,7 @@ import { OperateAuthEn } from "./OperateAuth";
 import {DataAuthEn} from './DataAuth'
 import {EnAuthSetEn} from './EnAuthSet'
 import {BaseConfigEn} from './BaseConfig'
+import {OutLinkConfigEn} from './OutLinkConfig'
 
 export default {
   // 系统设置
@@ -13,7 +14,8 @@ export default {
     OperateAuth:OperateAuthEn,
     DataAuth:DataAuthEn,
     EnAuthSet:EnAuthSetEn,
-    BaseConfig:BaseConfigEn
+    BaseConfig:BaseConfigEn,
+    OutLinkConfig:OutLinkConfigEn
   },
 };
 

+ 3 - 1
src/lang/modules/systemManage/indexZh.js

@@ -4,6 +4,7 @@ import { OperateAuthZh } from "./OperateAuth";
 import {DataAuthZh} from './DataAuth'
 import {EnAuthSetZh} from './EnAuthSet'
 import {BaseConfigZh} from './BaseConfig'
+import { OutLinkConfigZh } from "./OutLinkConfig";
 
 export default {
   // 系统设置
@@ -13,6 +14,7 @@ export default {
     OperateAuth:OperateAuthZh,
     DataAuth:DataAuthZh,
     EnAuthSet:EnAuthSetZh,
-    BaseConfig:BaseConfigZh
+    BaseConfig:BaseConfigZh,
+    OutLinkConfig:OutLinkConfigZh
   },
 };

+ 19 - 19
src/views/system_manage/outlinkListConfig.vue

@@ -2,34 +2,34 @@
   <div id="outlink-list-config" class="outlink-list-config">
     <div class="outlink-top-button-zone">
       <el-button type="primary" @click="addOutlink" 
-      v-permission="permissionBtn.outlinkConfigPermission.outlinkListConfig_add">添加菜单</el-button>
+      v-permission="permissionBtn.outlinkConfigPermission.outlinkListConfig_add">{{$t('SystemManage.OutLinkConfig.menu_add_btn')}}</el-button>
     </div>
     <el-table :data="outlinkData" border @sort-change="sortChange">
-      <el-table-column label="菜单名称" prop="Title" align="center">
+      <el-table-column :label="$t('SystemManage.OutLinkConfig.tale_col01')" prop="Title" align="center">
         <template slot-scope="{ row }">
           {{ row.Title }}
         </template>
       </el-table-column>
-      <el-table-column label="页面链接" prop="Url" align="center">
+      <el-table-column :label="$t('SystemManage.OutLinkConfig.tale_col02')" prop="Url" align="center">
         <template slot-scope="{ row }">
           {{ row.Url }}
         </template>
       </el-table-column>
-      <el-table-column label="创建时间" prop="CreateTime" align="center" sortable >
+      <el-table-column :label="$t('SystemManage.OutLinkConfig.tale_col03')" prop="CreateTime" align="center" sortable >
         <template slot-scope="{ row }">
           {{ row.CreateTime }}
         </template>
       </el-table-column>
-      <el-table-column label="操作" align="center">
+      <el-table-column :label="$t('Table.column_operations')" align="center">
         <template slot-scope="{ row }">
           <span class="table-button" @click="editOutlink(row)" 
-          v-permission="permissionBtn.outlinkConfigPermission.outlinkListConfig_edit">编辑</span>
+          v-permission="permissionBtn.outlinkConfigPermission.outlinkListConfig_edit">{{$t('Table.edit_btn')}}</span>
           <span class="table-button" style="color: #C54322;" @click="deleteOutlink(row)"
-          v-permission="permissionBtn.outlinkConfigPermission.outlinkListConfig_del">删除</span>
+          v-permission="permissionBtn.outlinkConfigPermission.outlinkListConfig_del">{{$t('Table.delete_btn')}}</span>
         </template>
       </el-table-column>
       <div slot="empty" style="line-height: 44px; margin: 60px 0; color: #999">
-        <tableNoData text="暂无数据" size="mini"/>
+        <tableNoData :text="$t('Table.prompt_slogan')" size="mini"/>
       </div>
     </el-table>
     <m-page
@@ -50,16 +50,16 @@
         <el-form
         :model="outlinkForm"
         ref="outlinkFormRef"
-        label-width="90px">
-          <el-form-item prop="Title" label="菜单名称" :rules="{required:true,message:'菜单名称不能为空',trigger:'blur'}">
-              <el-input v-model="outlinkForm.Title" placeholder="请输入菜单名称" style="width: 295px;"></el-input>
+        label-width="100px">
+          <el-form-item prop="Title" :label="$t('SystemManage.OutLinkConfig.tale_col01')" :rules="{required:true,message:'菜单名称不能为空',trigger:'blur'}">
+              <el-input v-model="outlinkForm.Title" :placeholder="$t('SystemManage.OutLinkConfig.placeholder01')" style="width: 295px;"></el-input>
           </el-form-item>
-          <el-form-item prop="Url" label="页面链接" :rules="{required:true,message:'URL不能为空',trigger:'blur'}">
-              <el-input v-model="outlinkForm.Url" placeholder="请输入URL" style="width: 295px;"></el-input>
+          <el-form-item prop="Url" :label="$t('SystemManage.OutLinkConfig.tale_col02')" :rules="{required:true,message:'URL不能为空',trigger:'blur'}">
+              <el-input v-model="outlinkForm.Url" :placeholder="$t('SystemManage.OutLinkConfig.placeholder02')" style="width: 295px;"></el-input>
           </el-form-item>
           <div class="form-box-buttons-zone">
-            <el-button style="width: 120px;height: 40px;" @click="addOutlinkShow=false">取消</el-button>
-            <el-button type="primary" @click="addOutlinkSave" style="margin-left:30px;width: 120px;height: 40px;">确定</el-button>
+            <el-button style="width: 120px;height: 40px;" @click="addOutlinkShow=false">{{$t('Dialog.cancel_btn')}}</el-button>
+            <el-button type="primary" @click="addOutlinkSave" style="margin-left:30px;width: 120px;height: 40px;">{{$t('Dialog.confirm_btn')}}</el-button>
           </div>
         </el-form>
       </div>
@@ -115,12 +115,12 @@ import mPage from '@/components/mPage.vue';
         this.getOutlinkData()
       },
       addOutlink(){
-        this.dialogTitle="添加菜单"
+        this.dialogTitle=this.$t('SystemManage.OutLinkConfig.menu_add_btn')
         this.addOutlinkShow=true
       },
       editOutlink(item){
         this.outlinkForm=item
-        this.dialogTitle="编辑菜单"
+        this.dialogTitle=this.$t('SystemManage.OutLinkConfig.menu_edit_btn')
         this.addOutlinkShow=true
       },
       resetForm(){
@@ -144,12 +144,12 @@ import mPage from '@/components/mPage.vue';
         })
       },
       deleteOutlink(item){
-        this.$confirm("删除后不可恢复,确认删除吗?", "提示", {
+        this.$confirm(this.$t('MsgPrompt.delete_info_msg'), this.$t('Confirm.prompt'), {
           type: "warning"
         }).then(() => {
           outlinkConfigInterence.outlinkDelete({Id:item.Id}).then(res=>{
             if(res.Ret == 200){
-              this.$message.success("删除菜单成功")
+              this.$message.success(this.$t('SystemManage.OutLinkConfig.del_success_msg'))
               this.getOutlinkData()
             }
           })