ffe5da2f by lxs

数据定价对接计算接口

1 parent 8dd504ae
......@@ -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({
......
......@@ -1095,6 +1095,7 @@ const open = (msg, type, target) => {
}
});
};
const drawerBtnClick = async (btn, info) => {
if (btn.value == "submit") {
let params = { ...info };
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!