theo 3 лет назад
Родитель
Сommit
16e3d0e9dc

+ 1 - 1
backendApi/config/menu.php

@@ -11,7 +11,7 @@ return [
 //        'class' => 'list-header',
 //    ],
     'dashboard'=>[
-        'name'=>'Console',//控制台
+        'name'=>'Dashboard',//控制台
         'class' => '',
         'icon'=>'el-icon-guide',
         'controller'=>'dashboard',

+ 1 - 1
backendEle/src/router/index.js

@@ -29,7 +29,7 @@ export const constantRouterMap = [
       component: _import('dashboard/index'),
       name: 'dashboard_index',
       meta: {
-        title: 'Console',//控制台
+        title: 'Dashboard',//控制台
         breadcrumb: [
           {title: 'Home Page', path: '/dashboard/index'},//首页
         ],

+ 3 - 3
frontendApi/config/menu.php

@@ -7,7 +7,7 @@
  */
 return [
     'dashboard'=>[
-        'name'=>'Console',//控制台
+        'name'=>'Dashboard',//控制台
         'class' => '',
         'icon'=>'el-icon-guide',
         'controller'=>'dashboard',
@@ -47,7 +47,7 @@ return [
             //['name'=>'开拓会员列表', 'class'=>'', 'icon'=>'', 'controller'=>'user', 'action'=>'rec-user', 'routePath'=>'user/rec-user', 'show'=>1,],
 //            ['name'=>'点位绑定列表', 'class'=>'', 'icon'=>'', 'controller'=>'user', 'action'=>'bind', 'routePath'=>'user/bind', 'show'=>1,],
 //            ['name'=>'点位绑定编辑', 'class'=>'', 'icon'=>'', 'controller'=>'user', 'action'=>'bind-edit', 'routePath'=>'user/bind-edit', 'show'=>0,],
-            ['name'=>'reset password', 'class'=>'', 'icon'=>'', 'controller'=>'user', 'action'=>'password', 'routePath'=>'user/password', 'show'=>1],//重置密码
+            ['name'=>'Reset Password', 'class'=>'', 'icon'=>'', 'controller'=>'user', 'action'=>'password', 'routePath'=>'user/password', 'show'=>1],//重置密码
             ['name'=>'Entry Management', 'class'=>'', 'icon'=>'', 'controller'=>'user', 'action'=>'dec', 'routePath'=>'user/dec', 'show'=>1,'allow'=>'declarer',],//报单管理
         ]
     ],
@@ -82,7 +82,7 @@ return [
         ]
     ],
     'finance'=>[
-        'name'=>'financial management',//财务管理
+        'name'=>'Financial Management',//财务管理
         'class' => '',
         'icon'=>'el-icon-bank-card',
         'controller'=>'finance',

+ 8 - 8
frontendEle/src/router/index.js

@@ -30,7 +30,7 @@ export const constantRouterMap = [
       component: _import('dashboard/index'),
       name: 'dashboard_index',
       meta: {
-        title: 'Console',//控制台
+        title: 'Dashboard',//控制台
         breadcrumb: [
           {title: 'Home Page', path: '/dashboard/index'},//首页
         ],
@@ -150,7 +150,7 @@ export const constantRouterMap = [
           component: _import('user/password'),
           name: 'user_password',
           meta: {
-              title: 'reset password',//重置密码
+              title: 'Reset Password',//重置密码
               breadcrumb: [
                   {title: 'Home Page', path: '/dashboard/index'},//首页
                   {title: 'Member management', path: '/user/index'},//会员管理
@@ -318,10 +318,10 @@ export const constantRouterMap = [
         component: _import('article/list'),
         name: 'article_list',
         meta: {
-          title: '文章列表',
+          title: 'Article List',
           breadcrumb: [
-            {title: '首页', path: '/dashboard/index'},
-            {title: '文章管理', path: '/article/list'},
+            {title: 'Dashboard', path: '/dashboard/index'},
+            {title: 'Articla Management', path: '/article/list'},
           ],
         },
       },
@@ -330,10 +330,10 @@ export const constantRouterMap = [
         component: _import('article/detail'),
         name: 'article_detail',
         meta: {
-          title: '文章详情',
+          title: 'Article Detail',
           breadcrumb: [
-            {title: '首页', path: '/dashboard/index'},
-            {title: '文章管理', path: '/article/list'},
+            {title: 'Dashboard', path: '/dashboard/index'},
+            {title: 'Articla Management', path: '/article/list'},
           ],
         },
       },

+ 4 - 4
frontendEle/src/views/article/list.vue

@@ -2,17 +2,17 @@
   <div v-loading="loading">
     <div class="white-box">
       <el-table :data="tableData" stripe style="width: 100%;">
-        <el-table-column label="标题" prop="TITLE">
+        <el-table-column label="Title" prop="TITLE">
           <template slot-scope="scope">
             <router-link :to="`/article/detail/${scope.row.ID}`">{{scope.row.TITLE}}</router-link>
           </template>
         </el-table-column>
-        <el-table-column label="分类">
+        <el-table-column label="Classification">
           <template slot-scope="scope">
             {{allData.allCategory[scope.row.CID].CATE_NAME}}
           </template>
         </el-table-column>
-        <el-table-column label="创建时间">
+        <el-table-column label="Creation Time">
           <template slot-scope="scope">
             {{tool.formatDate(scope.row.CREATED_AT)}}
           </template>
@@ -77,4 +77,4 @@ export default {
   .white-box a {
     color: #606266;
   }
-</style>
+</style>

+ 4 - 4
frontendEle/src/views/finance/recharge.vue

@@ -3,7 +3,7 @@
         <div v-loading="loading">
             <div class="white-box">
                 <el-table class="withdraw-table" :data="tableData" stripe style="width: 100%;">
-                    <el-table-column label="SN" prop="SN" width="200px">
+                    <el-table-column label="Serial Number" prop="SN" width="200px">
                     </el-table-column>
                     <el-table-column label="Creation time"><!-- 创建时间 -->
                         <template slot-scope="scope">
@@ -12,9 +12,9 @@
                     </el-table-column>
 <!--                    <el-table-column label="RECHARGE ORDER ID" prop="RECHARGE_ORDER_ID" width="200px">&lt;!&ndash;PS订单ID&ndash;&gt;-->
 <!--                    </el-table-column>-->
-                    <el-table-column label="CURRENCY" prop="CURRENCY" width="100px"><!--货币名称-->
+                    <el-table-column label="Currency" prop="CURRENCY" width="100px"><!--货币名称-->
                     </el-table-column>
-                    <el-table-column label="AMOUNT" prop="AMOUNT" width="150px">
+                    <el-table-column label="Amount" prop="AMOUNT" width="150px">
                     </el-table-column>
 
                     <el-table-column label="Recharge status name" width="200px"><!-- 充值状态名称 -->
@@ -23,7 +23,7 @@
                       </template>
                     </el-table-column>
 
-                    <el-table-column label="ACTIONS">
+                    <el-table-column label="Acitons">
                       <template slot-scope="scope">
                         <template v-if="scope.row.RECHARGE_STATUS==0">
                           <el-button type="primary" plain>去支付</el-button>

+ 2 - 2
frontendEle/src/views/user/dec.vue

@@ -168,13 +168,13 @@
                 </el-form-item>
                 <el-form-item>
                     <template slot="label">
-                        payment password<!-- 支付密码 -->
+                        Payment Password<!-- 支付密码 -->
                     </template>
                     <el-input v-model="form.payPassword" maxlength="32" placeholder="Enter Payment password"></el-input>
                 </el-form-item>
                 <el-form-item>
                     <template slot="label">
-                        Recipient name<!-- 收货人 -->
+                        Recipient Name<!-- 收货人 -->
                     </template>
                     <el-input v-model="form.consignee"></el-input>
                 </el-form-item>