21 lines
611 B
JavaScript
21 lines
611 B
JavaScript
export default {
|
|
|
|
// 系统名称
|
|
name: "购de着商城",
|
|
|
|
/**
|
|
* 后端api地址 (必填; 斜杠/结尾; 请确保能访问)
|
|
* 例如: https://www.你的域名.com/index.php?s=/api/
|
|
*/
|
|
// apiUrl: "https://shop2.client.yiovo.com/index.php?s=/api/", // 微信小程序
|
|
// apiUrl: "/index.php?s=/api/", // H5
|
|
apiUrl: "http://127.0.0.1:4523/m1/7488507-7223875-default/index.php?s=/api/", // mock
|
|
|
|
/**
|
|
* 是否启用商城设置缓存
|
|
* 将减少用户端重复请求; 正式运营时请设为true, 开启后商城设置同步前端需10分钟缓存
|
|
*/
|
|
enabledSettingCache: true
|
|
|
|
}
|