Browse Source

修改物资查看权限

dev
caoyizhong 2 years ago
parent
commit
ca55a24183
  1. 23
      src/views/suppliesstronger/ProcessSuppliesStrongerList.vue
  2. 58
      src/views/waste/ProcessWasteList.vue
  3. 34
      src/views/wastematerials/ProcessWasteMaterialsList.vue

23
src/views/suppliesstronger/ProcessSuppliesStrongerList.vue

@ -211,6 +211,7 @@
deleteBatch: "/suppliesstronger/processSuppliesStronger/deleteBatch",
exportXlsUrl: "/suppliesstronger/processSuppliesStronger/exportXls",
importExcelUrl: "/suppliesstronger/processSuppliesStronger/importExcel",
userRoleUrl: "/sys/user/queryUserRolePart",
},
dictOptions:{},
@ -226,7 +227,7 @@
},
},
methods: {
loadData(arg) {
async loadData (arg) {
if(!this.url.list){
this.$message.error("请设置url.list属性!")
return
@ -237,8 +238,24 @@
}
let ue= sessionStorage.getItem('USER_INFORMATION');
let res=JSON.parse(ue);
if(res.realname !== "管理员"){
return ;
// 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){
return ;
}
console.log(res);
var params = this.getQueryParams();//

58
src/views/waste/ProcessWasteList.vue

@ -220,6 +220,7 @@
deleteBatch: "/waste/processWaste/deleteBatch",
exportXlsUrl: "/waste/processWaste/exportXls",
importExcelUrl: "waste/processWaste/importExcel",
userRoleUrl: "/sys/user/queryUserRolePart",
},
dictOptions:{},
@ -243,6 +244,63 @@
},
},
methods: {
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;
}
var params = this.getQueryParams();//
this.loading = true;
console.log("params>>>>>>",params)
getAction(this.url.list, params).then((res) => {
if (res.success) {
console.log("asgaesthasesthj",res.result)
this.dataSource = res.result.records||res.result;
if(res.result.total)
{
this.ipagination.total = res.result.total;
}
}
if(res.code===510){
this.$message.warning(res.message)
}
this.loading = false;
})
},
searchReset() {
this.queryParam = {}
this.createScrapTime = []

34
src/views/wastematerials/ProcessWasteMaterialsList.vue

@ -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;

Loading…
Cancel
Save