aixin.vue 854 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <view class="content">
  3. <image class="image" src="../../static/img/jks2.png" mode="widthFix" style="width: 750rpx;"></image>
  4. <view class="btn" @click="navto('/pages/applic/contribution')">
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. import {
  10. weixindata
  11. } from '@/utils/wxAuthorized.js';
  12. export default {
  13. data() {
  14. return {
  15. };
  16. },
  17. onShow() {
  18. },
  19. onLoad(option) {
  20. },
  21. onHide() {
  22. },
  23. onUnload() {
  24. },
  25. methods: {
  26. navto(url) {
  27. uni.navigateTo({
  28. url
  29. })
  30. }
  31. }
  32. };
  33. </script>
  34. <style lang="scss">
  35. page {
  36. width: 100%;
  37. height: 100%;
  38. }
  39. .content {
  40. position: relative;
  41. // top: ;
  42. }
  43. .btn {
  44. position: absolute;
  45. width: 156rpx;
  46. height: 153rpx;
  47. top: 766rpx;
  48. left: 0;
  49. right: 0;
  50. margin: auto;
  51. border-radius: 50%;
  52. }
  53. </style>