|
@@ -228,8 +228,13 @@ export default {
|
|
|
// 获取保税区列表
|
|
|
getDeptList() {
|
|
|
this.loading = true;
|
|
|
- listDept({parentId: '100'}).then(response => {
|
|
|
- this.deptList = response.data
|
|
|
+ listDept().then(response => {
|
|
|
+ let data = response.data
|
|
|
+ // let deptList = data.filler()
|
|
|
+ this.deptList = data.filter(item => {
|
|
|
+ return item.type === 2 || item.type === 3;
|
|
|
+ })
|
|
|
+ console.log(this.deptList)
|
|
|
this.loading = false;
|
|
|
});
|
|
|
},
|