config.js
642 Bytes
/*
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2026-01-13 20:49:09
* @FilePath: /xyxBooking-weapp/src/utils/config.js
* @Description: 文件描述
*/
// TAG:服务器环境配置
const BASE_URL = process.env.NODE_ENV === 'production'
? 'https://oa.onwall.cn'
: 'https://oa-dev.onwall.cn'
/**
* 接口默认公共参数(避免在多个文件里硬编码)
* - f:业务模块标识
* - client_name:客户端标识(后端用于识别来源)
*/
export const REQUEST_DEFAULT_PARAMS = {
f: 'reserve',
client_name: '智慧西园寺',
}
export default BASE_URL