coupon.vue 641 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <view class="container home clearfix">
  3. <image class="coupon-image" src="http://static-b.caimei365.com/app/meibohui/meibo@_04.jpg" mode=""></image>
  4. </view>
  5. </template>
  6. <script>
  7. import { mapState,mapMutations} from 'vuex';
  8. export default {
  9. components:{
  10. },
  11. data() {
  12. return {
  13. }
  14. },
  15. onLoad() {
  16. },
  17. computed: {
  18. ...mapState(['hasLogin','userInfo','identity','isActivity'])
  19. },
  20. methods: {
  21. },
  22. onShow(){
  23. }
  24. }
  25. </script>
  26. <style lang="scss">
  27. page{
  28. background-color: #e15616;
  29. }
  30. .container{
  31. width: 100%;
  32. height: auto;
  33. .coupon-image{
  34. width: 100%;
  35. height: 1588rpx;
  36. }
  37. }
  38. </style>