环卫车小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
860 B

7 months ago
  1. <template>
  2. <view class="se-p-60">
  3. <view class="se-p-40 se-flex se-bgc-white se-br-20 se-bs se-flex-v-sa">
  4. <text class="se-pb-50 se-pt-100">邀请好友</text>
  5. <image class="se-a-300 se-br-20" src="https://cdn.uviewui.com/uview/swiper/swiper1.png" mode=""></image>
  6. <text class="se-pt-50 se-pb-80">邀请码TKAFGED</text>
  7. </view>
  8. <view class="se-px-100 se-pt-80 se-fs-20 se-flex">
  9. <view @click="onSubmit"
  10. class="se-mx-10 se-flex-1 se-br-40 se-flex-h-c se-h-80 se-lh-80 se-ta-c se-fs-28 se-c-white se-bgc-green">
  11. <text>保存到本地</text>
  12. </view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. }
  21. },
  22. watch: {
  23. },
  24. methods: {
  25. onSubmit(){
  26. console.info("保存成功")
  27. }
  28. },
  29. onReady() {
  30. },
  31. }
  32. </script>
  33. <style>
  34. page {
  35. background-color: #f5f5f5;
  36. }
  37. </style>