气象检测模块升级

liujun0703-新项目开发
liujun 2024-08-09 18:40:51 +08:00
parent e7ae621e42
commit 6160776b73
1 changed files with 8 additions and 2 deletions

View File

@ -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,