| 123456789101112131415161718192021222324 |
- import axios from '../utils/request'
- // 第一层获取列表
- export const getList = (data) => {
- return axios({
- method: 'post',
- url: '/cms/storageIn/list',
- data
- })
- }
- // 点击申请入库
- export const enterBank = () => {
- return axios({
- method: 'post',
- url: '/cms/storageIn/add'
- })
- }
- // 第二层获取藏品列表
- export const getListTow = (data) => {
- return axios({
- method: 'post',
- url: '/cms/storageIn/goodsList',
- data
- })
- }
|