jsy-app/components/custom-index-mp/custom-index-mp.vue

38 lines
625 B
Vue
Raw Normal View History

2024-12-02 17:19:21 +08:00
<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>