fix:商品套餐添加固定价格
Build and Deploy Vue3 / build (push) Successful in 1m19s
Build and Deploy Vue3 / deploy (push) Successful in 1m26s

This commit is contained in:
2026-02-05 15:15:13 +08:00
parent 4d45cf535e
commit fdc9db9a9c
3 changed files with 206 additions and 1220 deletions
+18
View File
@@ -195,6 +195,24 @@ export const enableProductPlan = (data) => {
})
}
/**禁用套餐固定价格 */
export const disablePlanFixedPrice = (data) => {
return http2.post('/api/v1/admin/good/plan/disable_fixed_price', data,{
headers:{
'Content-Type':'multipart/form-data'
}
})
}
/**启用套餐固定价格 */
export const enablePlanFixedPrice = (data) => {
return http2.post('/api/v1/admin/good/plan/enable_fixed_price', data,{
headers:{
'Content-Type':'multipart/form-data'
}
})
}
/**---------------------------------- */
/**商品分组标签管理 */