20 lines
549 B
JavaScript
20 lines
549 B
JavaScript
|
|
// const qrUrl = 'http://192.168.0.14:18866/qrCode/qrCodePage?qrCode='; // 重庆测试环境
|
|
// const qrUrl = 'http://112.29.103.165:21626/qrCode/qrCodePage?qrCode='; //重庆
|
|
// const qrUrl = 'http://112.29.103.165:21624/qrCode/qrCodePage?qrCode='; //宁夏
|
|
// const qrUrl = 'https://z.csgmall.com.cn/gl/qrCode/qrCodePage?qrCode='; //南网
|
|
|
|
|
|
const qrUrl = process.env.NODE_ENV === 'production' ? 'https://test-cc.zhgkxt.com/qrCode/qrCodePage?qrCode=' : 'http://192.168.0.14:18866/qrCode/qrCodePage?qrCode='
|
|
export default {
|
|
qrUrl,
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|