gaoluyang
6 天以前 58d7f40b836e74822a06144145022298f58e85f2
src/pages/inspectionUpload/index.vue
@@ -331,15 +331,7 @@
// 计算上传URL
const uploadFileUrl = computed(() => {
  let baseUrl = '';
  if (process.env.VUE_APP_BASE_API) {
    baseUrl = process.env.VUE_APP_BASE_API;
  } else if (process.env.NODE_ENV === 'development') {
    baseUrl = 'http://192.168.1.147:7003';
  } else {
    baseUrl = 'http://192.168.1.147:7003';
  }
   const baseUrl = 'http://114.132.189.42:9030';
  return baseUrl + uploadConfig.action;
})