tips.vue 479 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view class="withdraw-tips">
  3. <u-parse :content="tips" />
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'Withdraw',
  9. data() {
  10. return {
  11. tips: ''
  12. }
  13. },
  14. computed: {},
  15. methods: {
  16. getTips() {
  17. this.$api.share.tips().then(res => {
  18. this.tips = res.data
  19. })
  20. }
  21. },
  22. onLoad() {
  23. this.getTips()
  24. }
  25. }
  26. </script>
  27. <style lang="scss" scoped>
  28. .withdraw-tips {
  29. color: #fff;
  30. padding: 30rpx 30rpx 80rpx;
  31. }
  32. </style>