9e81860c by lxs

数据定价对接计算接口

1 parent 6ab4698d
......@@ -242,6 +242,15 @@ export const getPriceResult = (params) => {
});
};
// 计算数据定价
export const calculatPrice = (params) => {
return request({
url: `${import.meta.env.VITE_API_NEW_PORTAL}/pricing-data/calculate-price`,
method: "post",
data: params,
});
};
// 删除数据定价
export const deletePrice = (params) => {
return request({
......
......@@ -21,7 +21,8 @@ import {
savePrice,
getModelDemand,
getPriceResult,
exportModelScore
exportModelScore,
calculatPrice
} from '@/api/modules/dataPricing';
import { changeNum } from "@/utils/common";
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!