Commit 74075993 authored by jingnan's avatar jingnan 👀

领用出库当前登陆人为孙瑶雪 和dexadmin的时候下拉可以看到试验领用,其他人看不到

parent 5b5c5e14
......@@ -89,7 +89,14 @@ export default {
// 组件方法
methods: {
async getUseRequestTypes() {
this.options = await this.$utils.getDicListByCode('UseRequestType')
const user = localStorage.getItem('user')
const dicData = await this.$utils.getDicListByCode('UseRequestType')
// 当前登陆人为孙瑶雪 和dexadmin的时候下拉可以看到试验领用,其他人看不到
if (user === '孙瑶雪' || user === 'dexadmin') {
this.options = dicData
} else {
this.options = dicData.filter(item => 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