blob: 410b720c62e6ee7aaaed3836a1be821e49dc3a6a (
plain)
1
2
3
4
5
6
7
8
9
|
import odooApi from '@/core/api/odooApi'
const flashSaleApi = async ({isShow = true}) => {
const flashSale = await odooApi('GET', '/api/v1/flashsale/header?is_show_program='+isShow)
return flashSale
}
export default flashSaleApi
|