This commit is contained in:
yanran200730
2023-03-17 11:35:14 +08:00
3 changed files with 38 additions and 1 deletions

View File

@@ -21,7 +21,7 @@ import {mapState} from 'vuex'
export default {
name: "AppWxworkQrcode",
appName: "群二维码",
appName: "居民社群",
computed: {
...mapState(['user'])
},

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

View File

@@ -0,0 +1,37 @@
<template>
<div class="openPage">
<img class="images" src="./img/kaiping3.png" alt="">
</div>
</template>
<script>
export default {
name: "openPage",
appName: "openPage",
customNavigation: true,
data() {
return {
}
},
methods: {
},
onShow() {
},
}
</script>
<style scoped lang="scss">
.openPage {
width: 100%;
height: 100vh;
box-sizing: border-box;
.images {
width: 100%;
height: 100vh;
}
}
</style>