西门子
This commit is contained in:
24
utils/mork2.js
Normal file
24
utils/mork2.js
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user