12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- import request from '@/router/axios'
- // warehouse列表
- export function warehouseList(data = {}) {
- return request({
- url: '/api/victoriatourist/warehouse/page',
- method: 'post',
- data: data,
- })
- }
- // warehouse下拉
- export function warehouseSelectList(data = {}) {
- return request({
- url: '/api/victoriatourist/warehouse/select',
- 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,
- })
- }
|