123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <view>
- <view class="money">
- <view class="moneysize">47125</view>
- <view>我的圈币</view>
- </view>
- <van-cell use-label-slot title="圈币来源" label="描述信息">
- <template>
- +20
- </template>
- <template slot="label">
- djdjauijujkh
- </template>
- </van-cell>
- </view>
- </template>
- <script>
- export default {
- onReady: function() {
- console.log("进来了")
- uni.setNavigationBarColor({
- frontColor: '#ffffff',
- backgroundColor: '#D9332E',
- animation: {
- duration: 400,
- timingFunc: 'easeIn'
- }
- })
- },
-
- }
- </script>
- <style lang="scss">
- .money {
- height: 140upx;
- color: #fff;
- text-align: center;
- background-color: #D9332E;
- font-size: 28upx;
- .moneysize {
- font-size: 42upx;
- padding-top: 25upx;
- }
-
- }
- </style>
|