This commit is contained in:
zhutianqi
2021-12-07 16:28:39 +08:00
parent ce6614df47
commit db559920d2
2 changed files with 11 additions and 5 deletions
@@ -1357,7 +1357,13 @@ export default {
this.$http.get('lawss/sarStandAttrDetails/getListData', '', {
_this: this
}, res => {
this.options = res.data
let option = []
res.data.map(item => {
if (item.sarType === 'STAND' || item.sarType === 'INLAND_STAND') {
option.push(item)
}
})
this.options = option
})
this.getTableData();
},