Browse Source

修复提交

master
主管理员 6 months ago
parent
commit
13526bf626
11 changed files with 11 additions and 10 deletions
  1. +1
    -0
      .idea/compiler.xml
  2. +1
    -1
      admin-pc/.env
  3. +1
    -1
      admin-pc/.env.development
  4. +1
    -1
      admin-pc/.env.production
  5. +2
    -2
      admin-pc/public/index.html
  6. BIN
      admin-pc/public/logo.png
  7. BIN
      admin-pc/src/assets/logo.png
  8. +1
    -1
      admin-pc/src/components/layouts/TabLayout.vue
  9. +1
    -1
      admin-pc/src/components/layouts/UserLayout.vue
  10. +2
    -2
      admin-pc/src/components/page/GlobalHeader.vue
  11. +1
    -1
      admin-pc/src/components/tools/Logo.vue

+ 1
- 0
.idea/compiler.xml View File

@ -2,6 +2,7 @@
<project version="4">
<component name="CompilerConfiguration">
<annotationProcessing>
<profile default="true" name="Default" enabled="true" />
<profile name="Maven default annotation processors profile" enabled="true">
<sourceOutputDir name="target/generated-sources/annotations" />
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />


+ 1
- 1
admin-pc/.env View File

@ -1,5 +1,5 @@
NODE_ENV=production
VUE_APP_PLATFORM_NAME=三只青蛙系统
VUE_APP_PLATFORM_NAME=农闲宝后台系统
# 开启单点登录
VUE_APP_SSO=false
# 开启微应用模式


+ 1
- 1
admin-pc/.env.development View File

@ -1,5 +1,5 @@
NODE_ENV=development
VUE_APP_API_BASE_URL=http://localhost:8000/rice-admin/
VUE_APP_API_BASE_URL=https://houserent-admin.hhlm1688.com/houserent-admin/
VUE_APP_CAS_BASE_URL=http://cas.example.org:8443/cas
VUE_APP_ONLINE_BASE_URL=http://fileview.jeecg.com/onlinePreview


+ 1
- 1
admin-pc/.env.production View File

@ -1,4 +1,4 @@
NODE_ENV=production
VUE_APP_API_BASE_URL=http://localhost:8000/rice-admin/
VUE_APP_API_BASE_URL=https://houserent-admin.hhlm1688.com/houserent-admin/
VUE_APP_CAS_BASE_URL=http://localhost:8888/cas
VUE_APP_ONLINE_BASE_URL=http://fileview.jeecg.com/onlinePreview

+ 2
- 2
admin-pc/public/index.html View File

@ -5,7 +5,7 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>三只青蛙系统</title>
<title>农闲宝后台系统</title>
<link rel="icon" href="<%= BASE_URL %>logo.png">
<script src="<%= BASE_URL %>cdn/babel-polyfill/polyfill_7_2_5.js"></script>
<style>
@ -249,7 +249,7 @@
<div id="loader"></div>
<div class="loader-section section-left"></div>
<div class="loader-section section-right"></div>
<div class="load_title">正在加载 三只青蛙系统,请耐心等待
<div class="load_title">正在加载 农闲宝后台系统,请耐心等待
</div>
</div>


BIN
admin-pc/public/logo.png View File

Before After
Width: 148  |  Height: 148  |  Size: 8.0 KiB Width: 348  |  Height: 336  |  Size: 18 KiB

BIN
admin-pc/src/assets/logo.png View File

Before After
Width: 148  |  Height: 148  |  Size: 8.0 KiB Width: 348  |  Height: 336  |  Size: 18 KiB

+ 1
- 1
admin-pc/src/components/layouts/TabLayout.vue View File

@ -177,7 +177,7 @@
// update-begin-author:sunjianlei date:20200120 for:
changeTitle(title) {
let projectTitle = "三只青蛙系统"
let projectTitle = "农闲宝后台系统"
//
if (this.$route.path === indexKey) {
document.title = projectTitle


+ 1
- 1
admin-pc/src/components/layouts/UserLayout.vue View File

@ -5,7 +5,7 @@
<div class="header">
<a href="/">
<img src="~@/assets/logo.png" class="logo" alt="logo">
<span class="title">三只青蛙系统</span>
<span class="title">农闲宝后台系统</span>
</a>
</div>
<!-- <div class="desc">-->


+ 2
- 2
admin-pc/src/components/page/GlobalHeader.vue View File

@ -17,8 +17,8 @@
:type="collapsed ? 'menu-unfold' : 'menu-fold'"
@click="toggle"/>
<span v-if="device === 'desktop'">欢迎进入 三只青蛙系统</span>
<span v-else>三只青蛙系统</span>
<span v-if="device === 'desktop'">欢迎进入 农闲宝后台系统</span>
<span v-else>农闲宝后台系统</span>
<user-menu :theme="theme"/>
</div>


+ 1
- 1
admin-pc/src/components/tools/Logo.vue View File

@ -21,7 +21,7 @@
props: {
title: {
type: String,
default: '三只青蛙系统',
default: '农闲宝后台系统',
required: false
},
showTitle: {


Loading…
Cancel
Save