Skip to content

Commit

Permalink
feat: 修正域名
Browse files Browse the repository at this point in the history
  • Loading branch information
liguobao committed Feb 19, 2024
1 parent 4126ba4 commit 4a1cb3a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion House-Map.Crawler/API/src/Service/UserService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ private void SendActivateEmail(UserSave registerUser, string token)
EmailInfo email = new EmailInfo();
email.Body = $"Hi,{registerUser.userName}. <br>欢迎注册地图搜租房(house-map.cn),您的账号已经注册成功." +
"<br/>为了保证您能正常体验网站服务,请点击下面的链接完成邮箱验证以激活账号."
+ $"<br><a href='https://woyaozufang.live/#/Account/Activated?code={token}'>https://woyaozufang.live/#/Account/Activate?code={token}</a> "
+ $"<br><a href='https://app.house2048.cn/#/Account/Activated?code={token}'>https://app.house2048.cn/#/Account/Activate?code={token}</a> "
+ "<br>如果您以上链接无法点击,您可以将以上链接复制并粘贴到浏览器地址栏打开."
+ "<br>此信由系统自动发出,系统不接收回信,因此请勿直接回复。" +
"<br>如果有其他问题咨询请发邮件到[email protected].";
Expand Down
6 changes: 3 additions & 3 deletions House-Map.UI/src/ajax/axios.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ import store from './../store'
const vue = new Vue();

axios.defaults.timeout = 15000;
axios.defaults.baseURL = 'https://woyaozufang.live/api/';
axios.defaults.baseURL = 'https://app.house2048.cn/api/';
axios.defaults.headers['Content-Type'] = 'application/json;charset=utf-8';


const $ajax = axios.create({
baseURL: 'https://woyaozufang.live/api/',
baseURL: 'https://app.house2048.cn/api/',
});
const $v2 = axios.create({
baseURL: 'https://woyaozufang.live/v2/',
baseURL: 'https://app.house2048.cn/v2/',
});


Expand Down
4 changes: 2 additions & 2 deletions House-Map.UI/src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@
<footer>
<div>
<div>
Copyright 2016 - 2018 www.woyaozufang.live. All Rights Reserved
Copyright 2016 - 2024 house2048.cn. All Rights Reserved
<a href="http://www.miitbeian.gov.cn/" class="highlight-name" target="_blank">粤ICP备18145970号</a>
<a href="/" class="highlight-name">软狗的技术分享</a>
<a href="/" class="highlight-name">地图搜租房</a>
</div>
<!--<div class="call-me">-->
<!--<el-tooltip class="item" effect="dark" content="88888888" placement="top">-->
Expand Down

0 comments on commit 4a1cb3a

Please sign in to comment.