Files
rlz/coupon/utils/config.js
renjianbo 1d0a0b9b04 feat: add request.js utility, service page, and fix hospital image URLs
- 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>
2026-06-07 10:13:26 +08:00

10 lines
301 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// 环境配置 - 切换环境只需修改此文件
const config = {
// 开发环境本地后端需改为本机IP
// baseUrl: 'http://192.168.1.100:8039',
// 生产环境(通过 nginx 代理HTTPS + 域名)
baseUrl: 'https://ruilaizipj.com/prod-api',
}
module.exports = config