weixin.vue 531 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view class="default_page" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
  3. <cus-header title='官方企业微信'></cus-header>
  4. <image :src="imgBase+'add_weixin_bg.png'" mode="widthFix" :style="{'min-height':(h-mt)+'px'}"></image>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data(){
  10. return {
  11. imgBase:this.$imgBase
  12. }
  13. },
  14. methods:{
  15. }
  16. }
  17. </script>
  18. <style scoped lang="scss">
  19. .default_page{
  20. box-sizing: border-box;
  21. image{
  22. width: 100%;
  23. }
  24. }
  25. </style>