Commit b0fa943e2b3558a8bb5e7fc9efc69875021cb6dd

Authored by 谭毅彬
1 parent d2fe1ebc

更新数据库配置文件

Signed-off-by: TanYibin <5491541@qq.com>
ant-design-vue-jeecg/src/components/lang/en-US.js
1 export default { 1 export default {
2 lang: 'English', 2 lang: 'English',
3 announcement: { 3 announcement: {
4 - typeDict:{ 4 + typeDict: {
5 '1': 'System Announcement', 5 '1': 'System Announcement',
6 '2': 'Maintain Announcement', 6 '2': 'Maintain Announcement',
7 } 7 }
  8 + },
  9 + system: {
  10 + languageSetting: 'Language Setting',
8 } 11 }
9 } 12 }
10 \ No newline at end of file 13 \ No newline at end of file
ant-design-vue-jeecg/src/components/lang/zh-CN.js
@@ -5,5 +5,8 @@ export default { @@ -5,5 +5,8 @@ export default {
5 '1': '系统公告', 5 '1': '系统公告',
6 '2': '维护公告', 6 '2': '维护公告',
7 } 7 }
  8 + },
  9 + system: {
  10 + languageSetting: '语言设置',
8 } 11 }
9 } 12 }
10 \ No newline at end of file 13 \ No newline at end of file
ant-design-vue-jeecg/src/components/setting/SettingDrawer.vue
@@ -10,6 +10,17 @@ @@ -10,6 +10,17 @@
10 > 10 >
11 <div class="setting-drawer-index-content"> 11 <div class="setting-drawer-index-content">
12 <div :style="{ marginBottom: '24px' }"> 12 <div :style="{ marginBottom: '24px' }">
  13 + <a-list-item>
  14 + <a-list-item-meta>
  15 + <div slot="title">{{ $t('system.languageSetting') }}</div>
  16 + </a-list-item-meta>
  17 + <a-select size="small" style="width: 80px;" :defaultValue="$t('lang')" @change="handleLanguageChange">
  18 + <a-select-option value="zh-CN">中文</a-select-option>
  19 + <a-select-option value="en-US">English</a-select-option>
  20 + </a-select>
  21 + </a-list-item>
  22 + </div>
  23 + <div :style="{ marginBottom: '24px' }">
13 <h3 class="setting-drawer-index-title">整体风格设置{{ $t('lang') }}</h3> 24 <h3 class="setting-drawer-index-title">整体风格设置{{ $t('lang') }}</h3>
14 <div class="setting-drawer-index-blockChecbox"> 25 <div class="setting-drawer-index-blockChecbox">
15 <a-tooltip> 26 <a-tooltip>
@@ -23,7 +34,6 @@ @@ -23,7 +34,6 @@
23 </div> 34 </div>
24 </div> 35 </div>
25 </a-tooltip> 36 </a-tooltip>
26 -  
27 <a-tooltip> 37 <a-tooltip>
28 <template slot="title"> 38 <template slot="title">
29 亮色菜单风格 39 亮色菜单风格
@@ -38,17 +48,6 @@ @@ -38,17 +48,6 @@
38 </div> 48 </div>
39 </div> 49 </div>
40 <div :style="{ marginBottom: '24px' }"> 50 <div :style="{ marginBottom: '24px' }">
41 - <a-list-item>  
42 - <a-list-item-meta>  
43 - <div slot="title">语言设置</div>  
44 - </a-list-item-meta>  
45 - <a-select size="small" style="width: 80px;" :defaultValue="$t('lang')" @change="handleLanguageChange">  
46 - <a-select-option value="zh-CN">中文</a-select-option>  
47 - <a-select-option value="en-US">English</a-select-option>  
48 - </a-select>  
49 - </a-list-item>  
50 - </div>  
51 - <div :style="{ marginBottom: '24px' }">  
52 <h3 class="setting-drawer-index-title">主题色</h3> 51 <h3 class="setting-drawer-index-title">主题色</h3>
53 52
54 <div style="height: 20px"> 53 <div style="height: 20px">
huaheng-wms-core/src/main/resources/application-test.yml
@@ -137,7 +137,7 @@ spring: @@ -137,7 +137,7 @@ spring:
137 datasource: 137 datasource:
138 master: 138 master:
139 # mysql数据源配置 139 # mysql数据源配置
140 - url: jdbc:log4jdbc:mysql://172.16.29.45:3306/wms4?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai&rewriteBatchedStatements=true 140 + url: jdbc:log4jdbc:mysql://172.16.29.45:3306/wms4_wcs?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai&rewriteBatchedStatements=true
141 username: root 141 username: root
142 password: hhsoftware 142 password: hhsoftware
143 driver-class-name: net.sf.log4jdbc.DriverSpy 143 driver-class-name: net.sf.log4jdbc.DriverSpy
huaheng-wms-core/src/main/resources/application.yml
@@ -2,7 +2,7 @@ spring: @@ -2,7 +2,7 @@ spring:
2 application: 2 application:
3 name: huaheng-wcs-core 3 name: huaheng-wcs-core
4 profiles: 4 profiles:
5 - active: dev 5 + active: test
6 6
7 huaheng: 7 huaheng:
8 system: 8 system: