hookehuyr

fix

1 <!-- 1 <!--
2 * @Date: 2022-09-19 14:11:06 2 * @Date: 2022-09-19 14:11:06
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2023-12-21 16:28:56 4 + * @LastEditTime: 2023-12-21 16:49:40
5 * @FilePath: /meihuaApp/src/pages/detail/index.vue 5 * @FilePath: /meihuaApp/src/pages/detail/index.vue
6 * @Description: 房间详情页面 6 * @Description: 房间详情页面
7 --> 7 -->
...@@ -146,7 +146,7 @@ const page = ref(1); ...@@ -146,7 +146,7 @@ const page = ref(1);
146 146
147 const goToConfirm = () => { 147 const goToConfirm = () => {
148 // TODO: 需要查询个人信息是否留了手机号码 148 // TODO: 需要查询个人信息是否留了手机号码
149 - let tel = ''; 149 + let tel = '123';
150 if (tel) { 150 if (tel) {
151 Taro.navigateTo({ 151 Taro.navigateTo({
152 url: `/pages/confirm/index?id=123&start_date=${start_date.value}&end_date=${end_date.value}&between_date=${between_date.value}&start_date_week=${start_date_week.value}&end_date_week=${end_date_week.value}`, 152 url: `/pages/confirm/index?id=123&start_date=${start_date.value}&end_date=${end_date.value}&between_date=${between_date.value}&start_date_week=${start_date_week.value}&end_date_week=${end_date_week.value}`,
......
1 /* 1 /*
2 * @Date: 2022-09-19 14:11:06 2 * @Date: 2022-09-19 14:11:06
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2022-11-17 08:27:16 4 + * @LastEditTime: 2023-12-21 17:16:34
5 - * @FilePath: /swx/src/utils/config.js 5 + * @FilePath: /meihuaApp/src/utils/config.js
6 * @Description: 文件描述 6 * @Description: 文件描述
7 */ 7 */
8 // TAG:服务器环境配置 8 // TAG:服务器环境配置
9 -// const BASE_URL = "http://wenxuan.onwall.cn"; // 测试服务器 9 +const BASE_URL = "http://oa-dev.onwall.cn"; // 测试服务器
10 -const BASE_URL = "https://oa.onwall.cn"; // 正式服务器 10 +// const BASE_URL = "https://oa.onwall.cn"; // 正式服务器
11 11
12 export default BASE_URL 12 export default BASE_URL
......
1 /* 1 /*
2 * @Date: 2022-09-19 14:11:06 2 * @Date: 2022-09-19 14:11:06
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2023-12-14 18:03:43 4 + * @LastEditTime: 2023-12-21 17:17:10
5 * @FilePath: /meihuaApp/src/utils/request.js 5 * @FilePath: /meihuaApp/src/utils/request.js
6 * @Description: 简单axios封装,后续按实际处理 6 * @Description: 简单axios封装,后续按实际处理
7 */ 7 */
...@@ -24,7 +24,8 @@ const service = axios.create({ ...@@ -24,7 +24,8 @@ const service = axios.create({
24 }) 24 })
25 25
26 service.defaults.params = { 26 service.defaults.params = {
27 - f: 'swx', 27 + f: 'room',
28 + a: 'room_order',
28 }; 29 };
29 30
30 // request interceptor 31 // request interceptor
......