tongzhi.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <template>
  2. <view class="page">
  3. <view class="">
  4. <view class="time">
  5. 2021-08-17 16:41:37
  6. </view>
  7. <view class="content">
  8. <text class="title">
  9. 积分变动通知
  10. </text>
  11. <view class="font">
  12. 恭喜亲通过观看直播预告获得1积分!
  13. </view>
  14. </view>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. export default {
  20. data() {
  21. return {
  22. type:0,
  23. title:''
  24. };
  25. },
  26. onLoad(options) {
  27. this.type = options.type
  28. this.title = options.title
  29. uni.setNavigationBarTitle({
  30. title:this.title
  31. })
  32. }
  33. }
  34. </script>
  35. <style lang="scss">
  36. .time {
  37. font-size: 26rpx;
  38. font-family: PingFang SC;
  39. font-weight: 400;
  40. line-height: 24rpx;
  41. color: #808080;
  42. text-align: center;
  43. margin-top: 20rpx;
  44. margin-bottom: 20rpx;
  45. }
  46. .title {
  47. font-size: 30rpx;
  48. font-family: PingFang SC;
  49. font-weight: 600;
  50. line-height: 24rpx;
  51. color: #323337;
  52. }
  53. .font {
  54. font-size: 30rpx;
  55. font-family: PingFang SC;
  56. font-weight: 500;
  57. line-height: 70rpx;
  58. color: #323337;
  59. border-top: 2rpx solid #C7C7C7;
  60. margin-top: 24rpx;
  61. padding-top: 42rpx;
  62. }
  63. .page {
  64. width: 750rpx;
  65. height: 100vh;
  66. background: rgba(246, 245, 250, 1);
  67. border: 1rpx solid rgba(0, 0, 0, 0);
  68. padding: 0 24rpx;
  69. }
  70. .content {
  71. width: 702rpx;
  72. height: 220rpx;
  73. background: rgba(255, 255, 255, 1);
  74. border-radius: 14rpx;
  75. padding: 24rpx 22rpx 46rpx;
  76. }
  77. </style>