123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <view class="container home clearfix">
- <image class="coupon-image" src="http://static-b.caimei365.com/app/meibohui/meibo@_04.jpg" mode=""></image>
- </view>
- </template>
- <script>
- import { mapState,mapMutations} from 'vuex';
- export default {
- components:{
-
- },
- data() {
- return {
- }
- },
- onLoad() {
- },
- computed: {
- ...mapState(['hasLogin','userInfo','identity','isActivity'])
- },
- methods: {
- },
- onShow(){
-
- }
- }
- </script>
- <style lang="scss">
- page{
- background-color: #e15616;
- }
- .container{
- width: 100%;
- height: auto;
- .coupon-image{
- width: 100%;
- height: 1588rpx;
- }
- }
- </style>
|