|
@@ -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
|