12345678910111213141516171819202122232425262728293031323334353637383940 |
- import http from '@/http/api.js'
- // 查询品牌
- export function queryBrand(data) {
- return http.request({
- url: '/blade-system/dict-biz/dictionary',
- method: 'GET',
- data
- })
- }
- // 查询产品分类
- export function listAll(data) {
- return http.request({
- url: '/blade-sales-part/goodsType/tree',
- method: 'GET',
- data
- })
- }
- // 查询库存
- export function queryStock(data) {
- return http.request({
- url: '/blade-sales-part/stockDesc/list',
- method: 'GET',
- data
- })
- }
- // 查询库存统计
- export function appStatistics(data) {
- return http.request({
- url: '/blade-stock/stockgoods/appStatistics',
- method: 'GET',
- data
- })
- }
- export function dotList(data){
- return http.request({
- url: '/blade-sales-part/stockDesc/dotList',
- method: 'GET',
- data
- })
- }
|