weixin.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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/bd3eb4445fcb4e1ba01a35572359b622.png" mode="widthFix" @click="show=true"></image>
  5. <image src="https://oss.familydaf.cn/sxsnfile/20260123/656593e80a1344f8b4eab990bfa03cde.png" mode="widthFix" @click="handleGzg"></image>
  6. <image src="https://oss.familydaf.cn/sxsnfile/20260123/b3cd19089c184bfa8bc181bda62a898e.png" mode="widthFix" @click="handleBuy"></image>
  7. <div class="dialog adffcacjc" v-if="show" @click="show=false">
  8. <image src="https://oss.familydaf.cn/sxsnfile/20260123/8cf81d71eaae4a7a9f1fcd1e90934d75.png" mode="widthFix" show-menu-by-longpress></image>
  9. </div>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data(){
  15. return {
  16. show:false
  17. }
  18. },
  19. methods:{
  20. handleGzg(){
  21. uni.navigateTo({
  22. url:'/pages/webView?src=https://mp.weixin.qq.com/s/KTm7E8QS3tPOTQUs2wGtRw'
  23. })
  24. },
  25. handleBuy(){
  26. uni.navigateToMiniProgram({
  27. appId:'wx3d545d3ff0c1164d'
  28. })
  29. }
  30. }
  31. }
  32. </script>
  33. <style scoped lang="scss">
  34. .page{
  35. background: #002846;
  36. box-sizing: border-box;
  37. image{
  38. width: 100%;
  39. }
  40. .dialog{
  41. position: fixed;
  42. left: 0;
  43. right: 0;
  44. top: 0;
  45. bottom: 0;
  46. z-index: 1001;
  47. background: #000000;
  48. image{
  49. width: 100%;
  50. }
  51. }
  52. }
  53. </style>