| | |
| | | </div> |
| | | <div class="attribute"> |
| | | <span class="attribute_title">存储位置:</span> |
| | | <span class="attribute_content">{{ e.path }}</span> |
| | | <span class="attribute_content">{{ e.dirName }}</span> |
| | | </div> |
| | | <div class="attribute"> |
| | | <span class="attribute_title">生产时间:</span> |
| | |
| | | Viewer.entities.removeAll() |
| | | }, |
| | | async setQueryRetrieval() { |
| | | var obj = JSON.parse(JSON.stringify(this.form)) |
| | | if (this.geoWkt) { |
| | | this.form.wkt = encr(this.geoWkt) |
| | | obj.wkt = encr(this.geoWkt) |
| | | } else { |
| | | this.form.wkt = null; |
| | | obj.wkt = null; |
| | | } |
| | | if (this.acqTime) { |
| | | this.form.endDate = this.setFromDate(this.acqTime[0]) |
| | | this.form.startDate = this.setFromDate(this.acqTime[1]) |
| | | obj.endDate = this.setFromDate(this.acqTime[0]) |
| | | obj.startDate = this.setFromDate(this.acqTime[1]) |
| | | } else { |
| | | this.form.endDate = null |
| | | this.form.startDate = null |
| | | obj.endDate = null |
| | | obj.startDate = null |
| | | } |
| | | const data = await select_meta_ByPageAndCount(this.form); |
| | | if (obj.sensorType == 0) { |
| | | obj.sensorType = '' |
| | | } |
| | | if (obj.mataType == 0) { |
| | | obj.mataType = '' |
| | | } |
| | | const data = await select_meta_ByPageAndCount(obj); |
| | | if (data.code != 200) return |
| | | this.form.count = data.count; |
| | | var result = data.result; |
| | | |
| | | for (var i in result) { |
| | | if (result[i].createTime) { |
| | | result[i].createTime = this.setFromDate(result[i].createTime) |