| 12345678910111213141516171819202122232425262728293031323334353637 |
- import axios from '../utils/request'
- // 藏品登记-列表
- export const getHolding3List = (data) => {
- return axios({
- method: 'post',
- url: '/cms/ledger/list',
- data
- })
- }
- // 点击申请编辑
- export const getHolding3Edit = (data) => {
- return axios({
- method: 'post',
- url: '/cms/ledger/edit',
- data
- })
- }
- // 获取订单记录管理
- export const getRecord = (data) => {
- return axios({
- method: 'post',
- url: '/cms/orderLog/list',
- data
- })
- }
- // 通过id获取记录管理详情
- export const getRecordDetail = (moduleType, moduleId) => {
- return axios({
- url: `/cms/orderLog/detailModule/${moduleType}/${moduleId}`
- })
- }
- // 点击申请移库的确定
- export const applyMove = (goodsId, storageIds) => {
- return axios({
- url: `/cms/ledgerMove/edit/${goodsId}/${storageIds}`
- })
- }
|