1、口门门禁管理系统--->长期车辆进港管理模块--->分公司车辆信息---> 适应相关方接口调用做代码调整
parent
c7578be3be
commit
5055badbcc
|
@ -263,6 +263,7 @@ export default {
|
|||
loginUserName: '',
|
||||
loginDepartmentId: '',
|
||||
loginDepartmentName: '',
|
||||
corpInfoId: '', // 获取当前登陆用户的企业id
|
||||
listQuery: {
|
||||
page: 1,
|
||||
limit: 20
|
||||
|
@ -363,10 +364,10 @@ export default {
|
|||
}
|
||||
},
|
||||
created() {
|
||||
// this.getDict() // 获取字典
|
||||
this.getPageList() // 获取分页列表要展示的数据
|
||||
this.getDepartmentTreeData() // 获取部门树的数据
|
||||
this.getLoginUserInfo() // 获取当前登陆用户的信息
|
||||
// this.getDict() // 获取字典
|
||||
this.getPageList() // 获取分页列表要展示的数据
|
||||
},
|
||||
methods: {
|
||||
getRowKey(row) {
|
||||
|
@ -388,20 +389,21 @@ export default {
|
|||
}
|
||||
},
|
||||
getLoginUserInfo() { // 获取登录人信息
|
||||
return new Promise((resolve) => {
|
||||
requestFN(
|
||||
'/user/goEditMyInfo',
|
||||
{}
|
||||
).then((data) => {
|
||||
this.loginUserId = data.pd.USER_ID
|
||||
this.loginUserName = data.pd.NAME
|
||||
this.loginDepartmentId = data.pd.DEPARTMENT_ID
|
||||
this.loginDepartmentName = data.pd.deptName
|
||||
resolve('ok')
|
||||
}).catch((e) => {
|
||||
|
||||
})
|
||||
// return new Promise((resolve) => {
|
||||
requestFN(
|
||||
'/user/goEditMyInfo',
|
||||
{}
|
||||
).then((data) => {
|
||||
console.info(data.pd)
|
||||
this.loginUserId = data.pd.USER_ID
|
||||
this.loginUserName = data.pd.NAME
|
||||
this.loginDepartmentId = data.pd.DEPARTMENT_ID
|
||||
this.loginDepartmentName = data.pd.deptName
|
||||
this.corpInfoId = data.pd.CORPINFO_ID
|
||||
// resolve('ok')
|
||||
}).catch((e) => {
|
||||
})
|
||||
// })
|
||||
},
|
||||
// 搜索
|
||||
getQuery() {
|
||||
|
@ -414,12 +416,16 @@ export default {
|
|||
},
|
||||
// 获取列表
|
||||
getPageList() {
|
||||
console.info('输出登陆用户的信息')
|
||||
console.info(JSON.parse(sessionStorage.getItem('user')))
|
||||
this.roleName = ''
|
||||
this.listLoading = true
|
||||
requestFN(
|
||||
'vehiclemessage/getPageList?showCount=' + this.listQuery.limit + '¤tPage=' + this.listQuery.page,
|
||||
{
|
||||
...this.searchFrom
|
||||
...this.searchFrom,
|
||||
'CORPINFO_ID': JSON.parse(sessionStorage.getItem('user')).CORPINFO_ID,
|
||||
'loginUserId': JSON.parse(sessionStorage.getItem('user')).USER_ID
|
||||
}
|
||||
).then((data) => {
|
||||
this.listLoading = false
|
||||
|
@ -524,7 +530,9 @@ export default {
|
|||
requestFN(
|
||||
'vehiclemessage/addVehicleMessage',
|
||||
{
|
||||
...this.addForm
|
||||
...this.addForm,
|
||||
'CORPINFO_ID': this.corpInfoId,
|
||||
'loginUserId': this.loginUserId
|
||||
}
|
||||
).then((data) => {
|
||||
if (data.result === 'fail') {
|
||||
|
@ -638,7 +646,9 @@ export default {
|
|||
requestFN(
|
||||
'vehiclemessage/updateVehicleMessage',
|
||||
{
|
||||
...this.editForm
|
||||
...this.editForm,
|
||||
'CORPINFO_ID': JSON.parse(sessionStorage.getItem('user')).CORPINFO_ID,
|
||||
'loginUserId': JSON.parse(sessionStorage.getItem('user')).USER_ID
|
||||
}
|
||||
).then((data) => {
|
||||
if (data.result === 'success') {
|
||||
|
@ -678,7 +688,9 @@ export default {
|
|||
{
|
||||
VEHICLE_ID: id,
|
||||
USER_ID: USER_ID,
|
||||
EMPLOYEE_VEHICLE_USER_ID: EMPLOYEE_VEHICLE_USER_ID
|
||||
EMPLOYEE_VEHICLE_USER_ID: EMPLOYEE_VEHICLE_USER_ID,
|
||||
'CORPINFO_ID': JSON.parse(sessionStorage.getItem('user')).CORPINFO_ID,
|
||||
'loginUserId': JSON.parse(sessionStorage.getItem('user')).USER_ID
|
||||
}
|
||||
).then((data) => {
|
||||
if (data.result === 'success') {
|
||||
|
|
Loading…
Reference in New Issue