- Add request.js for unified API calls with loading/error handling - Add service page (service type listing) - Fix hospital list to load from API with proper image URL construction - Add service types dynamic loading on index page - Various mini program improvements (order, care, wallet pages) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
301 B
JavaScript
10 lines
301 B
JavaScript
// 环境配置 - 切换环境只需修改此文件
|
||
const config = {
|
||
// 开发环境(本地后端,需改为本机IP)
|
||
// baseUrl: 'http://192.168.1.100:8039',
|
||
// 生产环境(通过 nginx 代理,HTTPS + 域名)
|
||
baseUrl: 'https://ruilaizipj.com/prod-api',
|
||
}
|
||
|
||
module.exports = config
|