12345678910111213141516171819 |
- import request, { postBlob, getBlob, handleImport } from '@/utils/request'
- // 获取列表
- export function listPageV2(data) {
- return request({
- url: `/goods/material/stock/acc/list?moduleId=${data.moduleId}`,
- method: 'post',
- data
- })
- }
- //导出
- export function pageExport(data, name) {
- return postBlob({
- url: '/goods/material/stock/acc/list/export',
- data,
- name
- })
- }
|