Browse Source

修复代码

master
主管理员 1 month ago
parent
commit
a80eb90319
10 changed files with 15 additions and 15 deletions
  1. +6
    -6
      jeecg-boot-module-system/src/main/java/org/jeecg/modules/utils/SmsClient.java
  2. +1
    -1
      shop/.env
  3. +1
    -1
      shop/.env.development
  4. +1
    -1
      shop/.env.production
  5. +2
    -2
      shop/public/index.html
  6. BIN
      shop/public/logo.png
  7. BIN
      shop/src/assets/logo.png
  8. +1
    -1
      shop/src/components/layouts/UserLayout.vue
  9. +2
    -2
      shop/src/components/page/GlobalHeader.vue
  10. +1
    -1
      shop/src/components/tools/Logo.vue

+ 6
- 6
jeecg-boot-module-system/src/main/java/org/jeecg/modules/utils/SmsClient.java View File

@ -20,9 +20,9 @@ public class SmsClient {
public static String send(String phone,String code) {
SmsClient client = new SmsClient();
String response = client.sendSms("yixuan02", Arrays.asList(
new Message(phone, "【宜轩到家】您的验证码为:"+code)
), System.currentTimeMillis(), "WwYRzlXw5W4D");
String response = client.sendSms("tianduxx", Arrays.asList(
new Message(phone, "【天都服务】您的验证码为:"+code)
), System.currentTimeMillis(), "KXHQ2boE1wP6");
System.out.println(response);
return response;
}
@ -30,9 +30,9 @@ public class SmsClient {
public static String sendMsg2(String phone,String name) {
SmsClient client = new SmsClient();
String response = client.sendSms("yixuan02", Arrays.asList(
new Message(phone, "【宜轩到家】可爱的理疗师"+name+"您有一笔新订单下单哦!")
), System.currentTimeMillis(), "WwYRzlXw5W4D");
String response = client.sendSms("tianduxx", Arrays.asList(
new Message(phone, "【天都服务】可爱的理疗师"+name+"您有一笔新订单下单哦!")
), System.currentTimeMillis(), "KXHQ2boE1wP6");
System.out.println(response);
return response;
}


+ 1
- 1
shop/.env View File

@ -1,5 +1,5 @@
NODE_ENV=production
VUE_APP_PLATFORM_NAME=宜轩到家
VUE_APP_PLATFORM_NAME=天都服务
# 开启单点登录
VUE_APP_SSO=false
# 开启微应用模式


+ 1
- 1
shop/.env.development View File

@ -1,5 +1,5 @@
NODE_ENV=development
VUE_APP_API_BASE_URL=http://localhost:8000/massage-api-three/
VUE_APP_API_BASE_URL=https://admin.tiandufuwu.com/massage-api-tiandu/
VUE_APP_CAS_BASE_URL=http://cas.example.org:8443/cas
VUE_APP_ONLINE_BASE_URL=http://fileview.jeecg.com/onlinePreview


+ 1
- 1
shop/.env.production View File

@ -1,4 +1,4 @@
NODE_ENV=production
VUE_APP_API_BASE_URL=https://admin.yixuandaojia.com/massage-api-three/
VUE_APP_API_BASE_URL=https://admin.tiandufuwu.com/massage-api-tiandu/
VUE_APP_CAS_BASE_URL=http://localhost:8888/cas
VUE_APP_ONLINE_BASE_URL=http://fileview.jeecg.com/onlinePreview

+ 2
- 2
shop/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
shop/public/logo.png View File

Before After
Width: 1000  |  Height: 1000  |  Size: 28 KiB Width: 1000  |  Height: 1000  |  Size: 32 KiB

BIN
shop/src/assets/logo.png View File

Before After
Width: 1000  |  Height: 1000  |  Size: 28 KiB Width: 1000  |  Height: 1000  |  Size: 32 KiB

+ 1
- 1
shop/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
shop/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
shop/src/components/tools/Logo.vue View File

@ -21,7 +21,7 @@
props: {
title: {
type: String,
default: '宜轩到家',
default: '天都服务',
required: false
},
showTitle: {


Loading…
Cancel
Save