123456789101112131415161718 |
- import http from '@/http/api.js'
- // 查询品牌
- export function listAll(params) {
- return http.request({
- url: '/blade-sales-part/brandDesc/listAll',
- method: 'GET',
- params
- })
- }
- // 查询商品
- export function goodsList(params) {
- return http.request({
- url: '/blade-sales-part/productLaunch/appList',
- method: 'GET',
- params
- })
- }
|