| | |
| | | this.listData.dirs = ""; |
| | | this.listData.types = "" |
| | | if (this.formInline.category.length != 0) { |
| | | this.listData.dirs += this.formInline.category.toString(); |
| | | // this.listData.dirs += this.formInline.category.toString(); |
| | | } |
| | | |
| | | var val_data = this.formInline.category; |
| | |
| | | this.listData.dirs = ""; |
| | | |
| | | if (this.formInline.category.length != 0) { |
| | | this.listData.dirs += this.formInline.category.toString(); |
| | | this.listData.types = this.formInline.category.toString(); |
| | | }else{ |
| | | this.listData.types=null; |
| | | } |
| | | if (this.formInline.item.length != 0) { |
| | | if (this.listData.dirs.length != 0) { |
| | |
| | | }, |
| | | //获取资料类别数据 |
| | | async getCategorySelectData() { |
| | | const data = await dataLib_selectDirTypes(); |
| | | if (data.code != 200) { |
| | | this.$message.error('资料类别列表调用失败'); |
| | | } |
| | | // const data = await dataLib_selectDirTypes(); |
| | | // if (data.code != 200) { |
| | | // this.$message.error('资料类别列表调用失败'); |
| | | // } |
| | | |
| | | this.categoryOptions = data.result; |
| | | this.categoryOptions = [ |
| | | {key:'基础测绘',value:'基础测绘'}, |
| | | {key:'基础地灾',value:'基础地灾'}, |
| | | {key:'基础勘察',value:'基础勘察'}, |
| | | {key:'合规数据',value:'合规数据'}, |
| | | {key:'管理数据',value:'管理数据'}, |
| | | {key:'测绘(ESV)',value:'测绘(ESV)'}, |
| | | {key:'勘察(EGE)',value:'勘察(EGE)'}, |
| | | {key:'地灾(EGD)',value:'地灾(EGD)'}, |
| | | {key:'洞库(EGD)',value:'洞库(EGD)'}, |
| | | ]; |
| | | }, |
| | | //关键字查询 |
| | | setSearchKeyWords() { |