feat 接口中api字符重复问题

This commit is contained in:
Amjacks 2025-03-11 15:18:48 +08:00
parent b7a8553bbf
commit 46aaba3496
2 changed files with 5 additions and 5 deletions

View File

@ -109,7 +109,7 @@ export function Commit4CToERP(data: any) {
* */
export function RejectsAndExpCheck(data: any) {
return request({
url: '/api/api/SaleOut/RejectsAndExpCheck',
url: '/api/SaleOut/RejectsAndExpCheck',
method: 'post',
data: data,
});

View File

@ -6,7 +6,7 @@ import request from '@/utils/request';
*/
export function getQueryList(queryParams: any) {
return request({
url: '/api/api/query',
url: '/api/query',
method: 'post',
data: queryParams,
});
@ -14,7 +14,7 @@ export function getQueryList(queryParams: any) {
export function getQueryPageList(queryParams: any) {
return request({
url: '/api/api/queryPage',
url: '/api/queryPage',
method: 'post',
data: queryParams,
});
@ -22,7 +22,7 @@ export function getQueryPageList(queryParams: any) {
export function getQueryAccountKBList(queryParams: any) {
return request({
url: '/api/api/queryPageAccountKB',
url: '/api/queryPageAccountKB',
method: 'post',
data: queryParams,
});
@ -30,7 +30,7 @@ export function getQueryAccountKBList(queryParams: any) {
export function getQueryAccountPageList(queryParams: any) {
return request({
url: '/api/api/queryPageAccount',
url: '/api/queryPageAccount',
method: 'post',
data: queryParams,
});