This commit is contained in:
2024-06-07 16:44:35 +08:00
parent d0240d5acc
commit c0596c121a
3 changed files with 21 additions and 9 deletions

View File

@@ -60,10 +60,26 @@ export const easOutInBillDetailUpdate = (arr) => request({
data: arr
})
// 6.获取仓管员信息 ------ 下拉框带搜索功能
export const getUserInfo = () => request({
url:'api/easOutInBill/getUserInfo',
data: {}
})
export const getUserInfo = () => {
let res = {
result: [
{text: '钱舟峰', value: 'A110813006'},
{text: '李建辉', value: 'A240221002'},
{text: '胡敬红', value: 'A110307006'},
{text: '潘慧敏', value: 'A230805001'},
{text: '王华', value: 'A211218001'},
{text: '唐梦叶', value: 'A200601003'},
{text: '杨娟', value: 'A240409002'},
{text: '殷利红', value: 'A140306003'},
{text: '潘慧嘉', value: 'A230527001'},
{text: '伍长月', value: 'A140429007'},
{text: '魏旭', value: 'A210308006'}
],
code: 1,
desc: '查询成功'
}
return res
}
// 7.获取组织机构信息 ------ 下拉框带搜索功能
export const getOrganizationInfo = () => request({
url:'api/easOutInBill/getOrganizationInfo',