11111
This commit is contained in:
parent
302f5c84fc
commit
1335d40a90
|
@ -352,7 +352,7 @@
|
|||
:class="
|
||||
item.label == '学校' || item.label == '班级' ? 'widu' : ''
|
||||
"
|
||||
v-if="rightList?.length != 0"
|
||||
v-if="rightList?.length != 0 && item.show==true"
|
||||
>
|
||||
{{ item.label }}
|
||||
</div>
|
||||
|
@ -902,6 +902,21 @@ const getTable = (url, csh) => {
|
|||
} else {
|
||||
// 如果数据不为空,则将数据赋值给列表
|
||||
rightList.value = tableType.data[0];
|
||||
for(const key in tableType.data[0]){
|
||||
if(tableType.data[0][key] == null){
|
||||
tableType.columns.forEach((item) => {
|
||||
if(item.property == key){
|
||||
item.show=false
|
||||
}
|
||||
})
|
||||
}else{
|
||||
tableType.columns.forEach((item) => {
|
||||
if(item.property == key){
|
||||
item.show=true
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
rightTypeShow.value = false;
|
||||
// if (res.data[0].gzsj === null) {
|
||||
// rightTypeShow.value = true;
|
||||
|
|
Loading…
Reference in New Issue