气象检测模块升级
parent
e7ae621e42
commit
6160776b73
|
@ -9,8 +9,12 @@
|
|||
custom-class="bi_enterprise_dialog"
|
||||
top="5vh"
|
||||
@close="handlerClose">
|
||||
<xf-point v-if="value.otherInfo.type === 'point'" :id="id" :type="value.otherInfo.type" :gangkou="gangkou"/>
|
||||
<!-- 消防模块 -->
|
||||
<xf-point v-if="value.otherInfo.type === 'point'" :id="value.id" :type="value.otherInfo.type" :gangkou="gangkou"/>
|
||||
<xf-control v-if="value.otherInfo.type === 'xfbf01' || value.otherInfo.type ==='xfkzs01' || value.otherInfo.type ==='xfjyd01' || value.otherInfo.type ==='xfsy01'" :id="value.id" :type="value.otherInfo.type" :gangkou="gangkou"/>
|
||||
<!-- 气象模块 -->
|
||||
<weatherstation v-if="value.type === '12'" :id="value.id" :type="value.otherInfo.type" :gangkou="gangkou"/>
|
||||
<windspeedstation v-if="value.type === '11'" :id="value.id" :type="value.otherInfo.type" :gangkou="gangkou"/>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -18,9 +22,11 @@
|
|||
<script>
|
||||
import XfControl from '../../../map/dialog/xfControl.vue'
|
||||
import XfPoint from '../../../map/dialog/xfPoint.vue'
|
||||
import weatherstation from '../../../map/dialog/weatherstation.vue'
|
||||
import windspeedstation from '../../../map/dialog/weatherstation.vue'
|
||||
|
||||
export default {
|
||||
components: { XfPoint, XfControl },
|
||||
components: { windspeedstation, weatherstation, XfPoint, XfControl },
|
||||
props: {
|
||||
visible: {
|
||||
type: Boolean,
|
||||
|
|
Loading…
Reference in New Issue