definite.vue 862 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <view>
  3. <view class="money">
  4. <view class="moneysize">47125</view>
  5. <view>我的圈币</view>
  6. </view>
  7. <van-cell use-label-slot title="圈币来源" label="描述信息">
  8. <template>
  9. +20
  10. </template>
  11. <template slot="label">
  12. djdjauijujkh
  13. </template>
  14. </van-cell>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. onReady: function() {
  20. console.log("进来了")
  21. uni.setNavigationBarColor({
  22. frontColor: '#ffffff',
  23. backgroundColor: '#D9332E',
  24. animation: {
  25. duration: 400,
  26. timingFunc: 'easeIn'
  27. }
  28. })
  29. },
  30. }
  31. </script>
  32. <style lang="scss">
  33. .money {
  34. height: 140upx;
  35. color: #fff;
  36. text-align: center;
  37. background-color: #D9332E;
  38. font-size: 28upx;
  39. .moneysize {
  40. font-size: 42upx;
  41. padding-top: 25upx;
  42. }
  43. }
  44. </style>