西门子

This commit is contained in:
2024-09-03 15:15:03 +08:00
commit cc7d859691
129 changed files with 22469 additions and 0 deletions

24
utils/mork2.js Normal file
View File

@@ -0,0 +1,24 @@
export const handLogin = (user, password) => {
let res = {
user: {
user: {username: 'admin'},
},
token: 'abcd'
}
return res
}
export const regionList = () => {
let res = {
content: [{value: '1', label: 'aa'}, {value: '2', label: 'bb'}]
}
return res
}
export const fabOrders = (data) => {
let res = {
content: [
{order_code: '111', region_code: '3', due_date: '2020-10-10 11:30:30'}
]
}
return res
}