Commit 5c4b81ce authored by jingnan's avatar jingnan 👀

领用出库申请任何人都不能看到试验领用

parent e8ecd20b
......@@ -107,14 +107,14 @@ export default {
// 组件方法
methods: {
async getUseRequestTypes() {
const user = localStorage.getItem('user')
// const user = localStorage.getItem('user')
const dicData = await this.$utils.getDicListByCode('UseRequestType')
// 当前登陆人为孙瑶雪 和dexadmin的时候下拉可以看到试验领用,其他人看不到
if (user === '孙瑶雪' || user === 'dexadmin') {
this.options = dicData.filter(item => item.label !== '无指令领用')
} else {
this.options = dicData.filter(item => item.label !== '试验领用' && item.label !== '无指令领用')
}
// if (user === '孙瑶雪' || user === 'dexadmin') {
// this.options = dicData.filter(item => item.label !== '无指令领用')
// } else {
this.options = dicData.filter(item => item.label !== '试验领用' && item.label !== '无指令领用')
// }
},
dataChangeHandler(val) {
if (val) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment