config.js 652 Bytes
/*
 * @Date: 2022-09-19 14:11:06
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2026-01-08 16:42:38
 * @FilePath: /xyxBooking-weapp/src/utils/config.js
 * @Description: 文件描述
 */
// TAG:服务器环境配置
const BASE_URL = "https://oa-dev.onwall.cn"; // 测试服务器
// const BASE_URL = "https://oa.onwall.cn"; // 正式服务器

/**
 * 接口默认公共参数(避免在多个文件里硬编码)
 * - f:业务模块标识
 * - client_name:客户端标识(后端用于识别来源)
 */
export const REQUEST_DEFAULT_PARAMS = {
    f: 'reserve',
    client_name: '智慧西园寺',
}

export default BASE_URL