Browse Source

修改logo

intex_online20241111
zhang_li 4 weeks ago
parent
commit
5da6b53642
  1. 6
      index.html
  2. BIN
      src/assets/imgs/login-bg.png
  3. BIN
      src/assets/imgs/logo1.png
  4. BIN
      src/assets/imgs/logo_white.png
  5. BIN
      src/assets/imgs/logo_white_blue.png
  6. BIN
      src/assets/imgs/logo_white_btn.png
  7. 6
      src/locales/en-US.ts
  8. 6
      src/locales/zh-CN.ts
  9. 2
      src/main.ts
  10. 2
      src/store/modules/permission.ts

6
index.html

@ -6,8 +6,8 @@
<link rel="icon" href="/src/assets/imgs/logo1.png" /> <link rel="icon" href="/src/assets/imgs/logo1.png" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="富维海拉智慧工厂管理平台" /> <meta name="keywords" content="天津英泰智慧工厂管理平台" />
<meta name="description" content="富维海拉智慧工厂管理平台" /> <meta name="description" content="天津英泰智慧工厂管理平台" />
<script src="/systemConfig.js"></script> <script src="/systemConfig.js"></script>
<title>%VITE_APP_TITLE%</title> <title>%VITE_APP_TITLE%</title>
</head> </head>
@ -44,7 +44,7 @@
} }
.app-loading .app-loading-logo { .app-loading .app-loading-logo {
width: 100px; width: 200px;
margin: 0 auto 15px auto; margin: 0 auto 15px auto;
} }

BIN
src/assets/imgs/login-bg.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 607 KiB

After

Width:  |  Height:  |  Size: 2.5 MiB

BIN
src/assets/imgs/logo1.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 39 KiB

BIN
src/assets/imgs/logo_white.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.7 KiB

After

Width:  |  Height:  |  Size: 103 KiB

BIN
src/assets/imgs/logo_white_blue.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 61 KiB

After

Width:  |  Height:  |  Size: 31 KiB

BIN
src/assets/imgs/logo_white_btn.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 162 KiB

6
src/locales/en-US.ts

@ -1121,7 +1121,7 @@ export default {
:'Check the quality inspection report', :'Check the quality inspection report',
:'ChangChun', :'ChangChun',
:'ChengDu', :'ChengDu',
:'FAWAY HELLA Smart Factory Management Platform', :'TIANJIN YINGTAI Smart Factory Management Platform',
:'Purchase unreceived record', :'Purchase unreceived record',
:'Please select the desired shipment tracking number', :'Please select the desired shipment tracking number',
:'Not more in size', :'Not more in size',
@ -1141,7 +1141,7 @@ export default {
// 基础设施:'infrastructure', // 基础设施:'infrastructure',
// 报表管理:'report manager', // 报表管理:'report manager',
// 报表:'statement', // 报表:'statement',
// 富维海拉供应商管理系统:'vendor management system', // 天津英泰供应商管理系统:'vendor management system',
:'Please enter your username', :'Please enter your username',
:'Please enter email', :'Please enter email',
:'Forget Password', :'Forget Password',
@ -1170,7 +1170,7 @@ export default {
:'Planner', :'Planner',
:'Min', :'Min',
:'Max', :'Max',
:'FAWAY HELLA Supplier System', :'TIANJIN YINGTAI Supplier System',
:'System Management', :'System Management',
:'Infrastructure Construction', :'Infrastructure Construction',
:'Report Management', :'Report Management',

6
src/locales/zh-CN.ts

@ -1127,7 +1127,7 @@ export default {
:'查看质检报告', :'查看质检报告',
:'长春', :'长春',
:'成都', :'成都',
:'富维海拉智慧工厂管理平台', :'天津英泰智慧工厂管理平台',
:'采购未收货记录', :'采购未收货记录',
:'请选择要货计划单号', :'请选择要货计划单号',
:'大小不超过', :'大小不超过',
@ -1147,7 +1147,7 @@ export default {
:'基础设施', :'基础设施',
:'报表管理', :'报表管理',
:'报表', :'报表',
:'富维海拉供应商管理系统', :'天津英泰供应商管理系统',
:'请输入用户名', :'请输入用户名',
:'请输入邮箱', :'请输入邮箱',
:'忘记密码', :'忘记密码',
@ -1176,7 +1176,7 @@ export default {
:'计划员', :'计划员',
:'最小值', :'最小值',
:'最大值', :'最大值',
:'富维海拉供应商系统', :'天津英泰供应商系统',
:'物料包装信息', :'物料包装信息',
:'仓库管理', :'仓库管理',
:'库区管理', :'库区管理',

2
src/main.ts

@ -78,7 +78,7 @@ const setupAll = async () => {
// 多语言相关 // 多语言相关
const localeStore = useLocaleStore() const localeStore = useLocaleStore()
if(localeStore&&localeStore.currentLocale&&localeStore.currentLocale.lang.indexOf('en')>-1&&document.querySelector('#app-loading-title')){ if(localeStore&&localeStore.currentLocale&&localeStore.currentLocale.lang.indexOf('en')>-1&&document.querySelector('#app-loading-title')){
document.querySelector('#app-loading-title').innerHTML = 'FAWAY HELLA Smart Factory Management Platform' // 富维海拉智慧工厂管理平台 document.querySelector('#app-loading-title').innerHTML = 'FAWAY HELLA Smart Factory Management Platform' // 天津英泰智慧工厂管理平台
} }
setupAll() setupAll()

2
src/store/modules/permission.ts

@ -41,7 +41,7 @@ export const usePermissionStore = defineStore('permission', {
if (wsCache.get(CACHE_KEY.ROLE_ROUTERS)) { if (wsCache.get(CACHE_KEY.ROLE_ROUTERS)) {
res = wsCache.get(CACHE_KEY.ROLE_ROUTERS) as AppCustomRouteRecordRaw[] res = wsCache.get(CACHE_KEY.ROLE_ROUTERS) as AppCustomRouteRecordRaw[]
// res.forEach(item=>{ // res.forEach(item=>{
// if(item.name == '富维海拉供应商系统'&&tenant){ // if(item.name == '天津英泰供应商系统'&&tenant){
// item.name = item.name + tenant['text'] // item.name = item.name + tenant['text']
// } // }
// }) // })

Loading…
Cancel
Save