页面开发

This commit is contained in:
2025-06-09 14:43:25 +08:00
commit 47371e97e9
127 changed files with 22558 additions and 0 deletions

42
utils/mork.js Normal file
View File

@@ -0,0 +1,42 @@
export const OutGetDtl = () => {
let res = {
data: [{point_code: '0001'}]
}
return res
}
export const CheckGetDtl = () => {
let res = {
data: [{checkdtl_id: '0001', fac_qty: '100'}, {checkdtl_id: '0002', fac_qty: '200'}, {checkdtl_id: '0003', fac_qty: '300'}]
}
return res
}
export const pointGetPoint = () => {
let res = {
data: {point_name: '0001', storagevehicle_code: '100'}
}
return res
}
export const queryTask = () => {
let res = {
data: [{task_code: '0001', vehicle_code: '100'}]
}
return res
}
export const sweepCode = () => {
let res = {
data: {storagevehicle_code: '0001', material_code: '100', pcsn: 'pcsn', qty: 'qty', qty_unit_name: 'qty_unit_name'}
}
return res
}
export const getPlateDtl = () => {
let res = {
data: [{group_id: '0001', material_code: '100', pcsn: 'pcsn', qty: 'qty', qty_unit_name: 'qty_unit_name'}, {group_id: '2', material_code: '1等交房两地分居00', pcsn: 'pcsn', qty: 'qty', qty_unit_name: 'qty_unit_name'}]
}
return res
}
export const getSect = () => {
let res = {
data: [{sect_id: '0001', sect_name: 'aaa'}]
}
return res
}