devicesmgt/sgzb-ui/src/utils/globalUrl.js

20 lines
535 B
JavaScript
Raw Normal View History

2024-03-27 09:06:10 +08:00
2024-04-25 17:48:06 +08:00
// const qrUrl = 'http://192.168.0.14:21624/qrCode/qrCodePage?qrCode='; //测试
2024-04-20 10:23:04 +08:00
// const qrUrl = 'http://112.29.103.165:21626/qrCode/qrCodePage?qrCode='; //重庆
2024-04-08 09:01:54 +08:00
// const qrUrl = 'http://112.29.103.165:21624/qrCode/qrCodePage?qrCode='; //宁夏
// const qrUrl = 'https://z.csgmall.com.cn/gl/qrCode/qrCodePage?qrCode='; //南网
2024-03-27 09:06:10 +08:00
const qrUrl = process.env.NODE_ENV === 'production' ? 'http://112.29.103.165:21624/qrCode/qrCodePage?qrCode=' : 'http://192.168.0.14:21624/qrCode/qrCodePage?qrCode='
2024-03-27 09:06:10 +08:00
export default {
qrUrl,
2024-04-25 17:48:06 +08:00
}
2024-03-27 09:06:10 +08:00