Bladeren bron

build: api请求路径调整.

peter 1 jaar geleden
bovenliggende
commit
e1c0e95d6e
5 gewijzigde bestanden met toevoegingen van 24 en 15 verwijderingen
  1. 1 0
      .env.development
  2. 1 0
      .env.production
  3. 1 0
      .env.test
  4. 15 15
      src/pages/purchase-order/edit.vue
  5. 6 0
      src/utils/axios.js

+ 1 - 0
.env.development

@@ -1,2 +1,3 @@
 VITE_PO_PATH=https://crm.zoho.com/crm/org810841123/tab/PurchaseOrders/
 VITE_PO_APPEND=''
+VITE_API_PREFIX='/api'

+ 1 - 0
.env.production

@@ -1,2 +1,3 @@
 VITE_PO_PATH=https://crm.zoho.com/crm/org742735154/tab/PurchaseOrders/
 VITE_PO_APPEND=/canvas/4791186000049921685
+VITE_API_PREFIX='//zohocrmapi.promocollection.com.au'

+ 1 - 0
.env.test

@@ -1,2 +1,3 @@
 VITE_PO_PATH=https://crm.zoho.com/crm/org810841123/tab/PurchaseOrders/
 VITE_PO_APPEND=''
+VITE_API_PREFIX='/api'

+ 15 - 15
src/pages/purchase-order/edit.vue

@@ -1019,7 +1019,7 @@ import {
 } from 'element-plus'
 import type { FormInstance, FormRules } from 'element-plus'
 import { ShoppingCart, FolderAdd, Switch } from '@element-plus/icons-vue'
-import axios from 'axios'
+import request from '@/utils/axios'
 import dayjs from 'dayjs'
 import jspdf from 'jspdf'
 import html2canvas from 'html2canvas'
@@ -1239,8 +1239,8 @@ const sendPDF = function (file: string, filename = `attachment_file`) {
   }
 
   return new Promise((resolve, reject) => {
-    axios
-      .post('/api/Purchase_orders/uploadAttachmentFile', data, {
+    request
+      .post('/Purchase_orders/uploadAttachmentFile', data, {
         headers: {
           'Content-Type': 'multipart/form-data',
         },
@@ -1319,8 +1319,8 @@ const createPurchaseOrders = function () {
   if (data.productList) delete data.productList
   console.log(data, 'create po params')
   return new Promise((resolve, reject) => {
-    axios
-      .post('/api/Purchase_orders/createPurchaseOrders', data, {})
+    request
+      .post('/Purchase_orders/createPurchaseOrders', data, {})
       .then((response) => {
         if (response.data.code !== 1) return
         const res = response.data.result
@@ -1350,8 +1350,8 @@ const createPurchaseOrders = function () {
 }
 const getPurchaseOrdersData = function () {
   return new Promise((resolve, reject) => {
-    axios
-      .post('/api/purchase_orders/getPurchaseOrdersData', {
+    request
+      .post('/purchase_orders/getPurchaseOrdersData', {
         id: POID.value,
       })
       .then((response) => {
@@ -1678,8 +1678,8 @@ const getSupplierLists = utils.debounce(function (string: string) {
 getSupplierLists('')
 
 const getSearchData = async function (p: any) {
-  return await axios
-    .post('/api/common/getPublicLists', p, {
+  return await request
+    .post('/common/getPublicLists', p, {
       headers: { 'Content-Type': 'multipart/form-data' },
     })
     .then((response) => {
@@ -1837,8 +1837,8 @@ let supplierPaymentTermsLists = ref<ISelectItem[]>([])
 
 loading.value = true
 // 获取下拉框非动态候选数据
-const p1 = axios
-  .post('/api/common/getfieldsData')
+const p1 = request
+  .post('/common/getfieldsData')
   .then((response: any) => {
     // console.log(response, '/common/getfieldsData')
     const res = response.data.result
@@ -1877,8 +1877,8 @@ const route = useRoute()
 const productBlackList = ['4791186000046982872', '4791186000046982896']
 const soOwner = ref('')
 // 获取销售订单详情
-const p2 = axios
-  .post('/api/common/getSalesOrdersData', { id: route.params.id })
+const p2 = request
+  .post('/common/getSalesOrdersData', { id: route.params.id })
   .then((response) => {
     if (response.data.code !== 1) return
     const res = response.data.result
@@ -1926,8 +1926,8 @@ const p2 = axios
 
 // 根据url传递过来的用户ID获取的用户身份信息
 const userInfo = ref({} as IUser)
-const p3 = axios
-  .post('/api/common/getUsersData', { id: route.query.user })
+const p3 = request
+  .post('/common/getUsersData', { id: route.query.user })
   .then((response) => {
     const res = response.data
     if (res.code !== 1) return

+ 6 - 0
src/utils/axios.js

@@ -0,0 +1,6 @@
+import axios from 'axios'
+const request = axios.create({
+  baseURL: import.meta.env.VITE_API_PREFIX,
+})
+
+export default request