| 123456789101112131415161718192021222324252627282930 |
- "use strict";
- /**
- * 正式环境
- * @type {string}
- */
- // let baseUrl = `https://jje.xinyuekj.com.cn/prod-api`
- /**
- * 测试环境
- * @type {string}
- */
- let baseUrl = `https://jje.xinyuekj.com.cn/test-api`
- /**
- * 庞架开发环境
- */
- // let baseUrl = `http://65i1sxopd9qp.ngrok.xiaomiqiu123.top`
- // 变量可自行添加修改
- export default { //存放变量的容器
- appid: '__UNI__1EEA945',
- baseUrl,
- uploadUrl: '/v1/file/put-file'
- }
|