38 lines
625 B
Vue
38 lines
625 B
Vue
<template>
|
|
<u-popup :show="open" mode="bottom" @close="close" closeable>
|
|
<view style="width: 100vw;height: calc(100vh - 100px);border: 1px solid red;"></view>f
|
|
</u-popup>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "Mp",
|
|
components: {},
|
|
props: {},
|
|
data() {
|
|
return {
|
|
title: "土壤墒情",
|
|
open: false,
|
|
}
|
|
},
|
|
created() {},
|
|
mounted() {},
|
|
methods: {
|
|
/**
|
|
* 显示方法
|
|
* @param type 1基站 2阀门
|
|
* @param row
|
|
* @param data
|
|
*/
|
|
async show() {
|
|
this.open = true;
|
|
},
|
|
close() {
|
|
this.open = false;
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
|
|
</style> |