|
|
|
@ -213,7 +213,7 @@
|
|
|
|
|
deleteBatch: "/wastematerials/processWasteMaterials/deleteBatch", |
|
|
|
|
exportXlsUrl: "/wastematerials/processWasteMaterials/ownExportXls", |
|
|
|
|
importExcelUrl: "wastematerials/processWasteMaterials/importExcel", |
|
|
|
|
|
|
|
|
|
userRoleUrl: "/sys/user/queryUserRolePart", |
|
|
|
|
listByuntil: '/unitwaste/processUnitWasteWarehouseCode/list', |
|
|
|
|
queryLibraryName: "/libraryassociation/processLibraryAssociation/list", |
|
|
|
|
|
|
|
|
@ -250,19 +250,45 @@
|
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
loadData(arg) { |
|
|
|
|
async loadData(arg) { |
|
|
|
|
if(!this.url.list){ |
|
|
|
|
this.$message.error("请设置url.list属性!") |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
let ue= sessionStorage.getItem('USER_INFORMATION'); |
|
|
|
|
let res=JSON.parse(ue); |
|
|
|
|
// console.log("res",res); |
|
|
|
|
|
|
|
|
|
let role = { |
|
|
|
|
userid : res.id, |
|
|
|
|
} |
|
|
|
|
let isAdmin = false; |
|
|
|
|
await getAction(this.url.userRoleUrl,role).then(res =>{ |
|
|
|
|
// console.log("res信息",res) |
|
|
|
|
if(res.success){ |
|
|
|
|
let item = res.result; |
|
|
|
|
item.forEach( re =>{ |
|
|
|
|
if(re.roleName === "管理员" || re.roleName === "超级管理员"){ |
|
|
|
|
isAdmin = true; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
if(!isAdmin){ |
|
|
|
|
if(!!res.departIds){ |
|
|
|
|
this.queryParam.departId = res.departIds ; |
|
|
|
|
}else{ |
|
|
|
|
return ; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//加载数据 若传入参数1则加载第一页的内容 |
|
|
|
|
if (arg === 1) { |
|
|
|
|
this.ipagination.current = 1; |
|
|
|
|
} |
|
|
|
|
this.section(); |
|
|
|
|
// this.section(); |
|
|
|
|
var params = this.getQueryParams();//查询条件 |
|
|
|
|
this.loading = true; |
|
|
|
|
console.log("params>>>>>>",params) |
|
|
|
|
// console.log("params>>>>>>",params) |
|
|
|
|
getAction(this.url.list, params).then((res) => { |
|
|
|
|
if (res.success) { |
|
|
|
|
this.dataSource = res.result.records||res.result; |
|
|
|
|