| | |
| | | <span>登记类型:</span> |
| | | |
| | | <el-select style="flex: 1;" size="small" v-model="typeValue" @change="typeChange" placeholder="请选择"> |
| | | <el-option v-for="item in typeOptions" :key="item.value" :label="item.label" |
| | | :value="item.value"></el-option> |
| | | <el-option v-for="item in typeOptions" :key="item.value" :label="item.label" :value="item.value"></el-option> |
| | | </el-select> |
| | | </div> |
| | | |
| | |
| | | |
| | | // 点击定位 |
| | | rowClick (row) { |
| | | let lng = global.DC.CoordTransform.GCJ02ToWGS84(row.x, row.y)[0] |
| | | let lat = global.DC.CoordTransform.GCJ02ToWGS84(row.x, row.y)[1] |
| | | // let lng = global.DC.CoordTransform.GCJ02ToWGS84(row.x, row.y)[0] |
| | | // let lat = global.DC.CoordTransform.GCJ02ToWGS84(row.x, row.y)[1] |
| | | let lng = row.x |
| | | let lat = row.y |
| | | |
| | | this.$EventBus.$emit('toPosition', { |
| | | siteJd: lng, |