hookehuyr

fix

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