| 1234567891011121314151617181920212223 |
- const imageBaseUrl = 'https://backend.awayqtw.com/prod-api';//生产环境
- const UploadUrl = 'https://api.awayqtw.com/utils/Upload';//生产环境
- const ApibaseUrl = 'https://api.awayqtw.com';//生产环境
- const webBaseUrl = 'https://backend.awayqtw.com';//生产环境
- export default {
- getimageBaseUrl(){
- return imageBaseUrl;
- },
-
- getUploadUrl(){
- return UploadUrl;
- },
-
- getApibaseUrl(){
- return ApibaseUrl;
- },
-
- getwebBaseUrl(){
- return webBaseUrl;
- },
- }
|