1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <template>
- <view class="page">
- <view class="">
- <view class="time">
- 2021-08-17 16:41:37
- </view>
- <view class="content">
- <text class="title">
- 积分变动通知
- </text>
- <view class="font">
- 恭喜亲通过观看直播预告获得1积分!
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- type:0,
- title:''
- };
- },
- onLoad(options) {
- this.type = options.type
- this.title = options.title
- uni.setNavigationBarTitle({
- title:this.title
- })
- }
- }
- </script>
- <style lang="scss">
- .time {
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 400;
- line-height: 24rpx;
- color: #808080;
- text-align: center;
- margin-top: 20rpx;
- margin-bottom: 20rpx;
- }
- .title {
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 600;
- line-height: 24rpx;
- color: #323337;
- }
- .font {
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- line-height: 70rpx;
- color: #323337;
- border-top: 2rpx solid #C7C7C7;
- margin-top: 24rpx;
- padding-top: 42rpx;
- }
- .page {
- width: 750rpx;
- height: 100vh;
- background: rgba(246, 245, 250, 1);
- border: 1rpx solid rgba(0, 0, 0, 0);
- padding: 0 24rpx;
- }
- .content {
- width: 702rpx;
- height: 220rpx;
- background: rgba(255, 255, 255, 1);
- border-radius: 14rpx;
- padding: 24rpx 22rpx 46rpx;
- }
- </style>
|