support.vue 568 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class="default_page" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
  3. <cus-header title='专业支持'></cus-header>
  4. <image style="width: 100%;" :src="imgBase+'support.png'" mode="widthFix" @click="handleTurn"></image>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data(){
  10. return {
  11. imgBase:this.$imgBase
  12. }
  13. },
  14. methods:{
  15. handleTurn(){
  16. uni.navigateTo({
  17. url:'/pages/webView?src=https://appyf7rnhyg7811.h5.xiaoeknow.com'
  18. })
  19. }
  20. }
  21. }
  22. </script>
  23. <style scoped lang="scss">
  24. </style>