1234567891011121314151617181920212223 |
- // //正式环境
- // const productionUrl = 'https://wanbei.monvkeji.cn/'
- // // 测试环境
- // const testUrl = 'https://wanbei.monvkeji.cn/'
- // // 开发环境
- // const developUrl = 'http://192.168.10.166:7114/'
- // export default {
- // // 系统名称
- // name: "签约",
- // apiUrl: process.env.NODE_ENV !== 'production' ? testUrl : testUrl,
- // }
- //正式环境
- const productionUrl = 'https://wanbei.monvkeji.cn/'
- // 测试环境
- const testUrl = 'https://wanbei.monvkeji.cn/'
- // 开发环境
- const developUrl = 'http://192.168.10.166:7114/'//余红奇
- // const developUrl = 'http://192.168.10.170:7114/'//陈果
- export default {
- // 系统名称
- name: "签约",
- apiUrl: process.env.NODE_ENV !== 'production' ? developUrl : testUrl,
- }
|