123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import request from '@/router/axios'
- // warehouse列表
- export function warehouseList(data = {}) {
- return request({
- url: '/api/victoriatourist/warehouse/page',
- method: 'post',
- data: data,
- })
- }
- // 添加warehouse
- export function warehouseAdd(data = {}) {
- return request({
- url: '/api/victoriatourist/warehouse/add',
- method: 'post',
- data: data,
- })
- }
- // warehouse详情
- export function warehouseDetails(data = {}) {
- return request({
- url: '/api/victoriatourist/warehouse/details',
- method: 'post',
- data: data,
- })
- }
- // 编辑warehouse
- export function warehouseEdit(data = {}) {
- return request({
- url: '/api/victoriatourist/warehouse/edit',
- method: 'post',
- data: data,
- })
- }
- // 删除warehouse
- export function warehouseDel(data = {}) {
- return request({
- url: '/api/victoriatourist/warehouse/delete',
- method: 'post',
- data: data,
- })
- }
|