weixin.vue 620 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view class="page adffc" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
  3. <cus-header title='专业支持'></cus-header>
  4. <image src="https://oss.familydaf.cn/sxsnfile/20260123/c8fe42bed88b43f3be27628a7eedf94a.png" mode="widthFix" @click="handleBuy"></image>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data(){
  10. return {
  11. }
  12. },
  13. methods:{
  14. handleBuy(){
  15. uni.navigateToMiniProgram({
  16. appId:'wx3d545d3ff0c1164d'
  17. })
  18. }
  19. }
  20. }
  21. </script>
  22. <style scoped lang="scss">
  23. .page{
  24. box-sizing: border-box;
  25. image{
  26. width: 100%;
  27. }
  28. }
  29. </style>