2025-08-20 10:28:23 +08:00
|
|
|
import request from '@/utils/request';
|
|
|
|
import { AxiosPromise } from 'axios';
|
|
|
|
|
|
|
|
//获取版本
|
|
|
|
export const obtainAllVersionNumbers = (query: any): AxiosPromise<any> => {
|
|
|
|
return request({
|
|
|
|
url: '/tender/billofquantitiesLimitList/obtainAllVersionNumbers',
|
|
|
|
method: 'get',
|
|
|
|
params: query
|
|
|
|
});
|
|
|
|
};
|
|
|
|
//获取sheet
|
|
|
|
export const sheetList = (query: any): AxiosPromise<any> => {
|
|
|
|
return request({
|
|
|
|
url: '/tender/billofquantitiesLimitList/sheetList',
|
|
|
|
method: 'get',
|
|
|
|
params: query
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
//获取一览表
|
|
|
|
export const listBillofquantitiesLimitList = (query: any): AxiosPromise<any> => {
|
|
|
|
return request({
|
|
|
|
url: '/tender/billofquantitiesLimitList/list',
|
|
|
|
method: 'get',
|
|
|
|
params: query
|
|
|
|
});
|
|
|
|
};
|
2025-08-20 15:17:37 +08:00
|
|
|
//获取一览数据树
|
|
|
|
export const treeList = (query: any): AxiosPromise<any> => {
|
|
|
|
return request({
|
|
|
|
url: '/tender/billofquantitiesLimitList/getTree',
|
|
|
|
method: 'get',
|
|
|
|
params: query
|
|
|
|
});
|
|
|
|
};
|
2025-08-20 14:28:04 +08:00
|
|
|
//修改单价
|
|
|
|
export const updatePrice = (query: any): AxiosPromise<any> => {
|
|
|
|
return request({
|
|
|
|
url: '/tender/billofquantitiesLimitList',
|
|
|
|
method: 'put',
|
|
|
|
data: query
|
|
|
|
});
|
|
|
|
};
|