formerly.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <template>
  2. <view class="page">
  3. <view class="" style="position: relative;">
  4. <image class="img" src="../static/logo.png" mode=""></image>
  5. <view class="back">直播已结束</view>
  6. <view class="bottom">
  7. <u-notice-bar mode="horizontal" :list="list"></u-notice-bar>
  8. </view>
  9. <view class="time u-flex ">
  10. 2021-08-19 19:30:00
  11. </view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. list: [
  20. '寒雨连江夜入吴',
  21. '平明送客楚山孤',
  22. '洛阳亲友如相问',
  23. '一片冰心在玉壶'
  24. ]
  25. }
  26. },
  27. onLoad() {
  28. },
  29. methods: {
  30. }
  31. }
  32. </script>
  33. <style lang="scss">
  34. ::v-deep .u-type-warning-light-bg {
  35. background-color: rgba(255, 255, 255, 0) !important;
  36. }
  37. ::v-deep .u-icon__icon--warning {
  38. color: #fff !important
  39. }
  40. ::v-deep .u-type-warning {
  41. color: #fff !important
  42. }
  43. .bottom {
  44. width: 702rpx;
  45. height: 76rpx;
  46. background: rgba(44, 45, 48, 0.75);
  47. border-radius: 0rpx 0rpx 16rpx 16rpx;
  48. position: absolute;
  49. top: 204rpx;
  50. left: 0
  51. }
  52. .time {
  53. font-size: 24rpx;
  54. font-family: PingFang SC;
  55. font-weight: 400;
  56. line-height: 34rpx;
  57. color: #7A7A7A;
  58. justify-content: flex-end;
  59. }
  60. .back {
  61. width: 158rpx;
  62. height: 56rpx;
  63. background: rgba(187, 187, 187, 1);
  64. border-radius: 16rpx 0rpx 22rpx 0rpx;
  65. font-size: 26rpx;
  66. font-family: PingFang SC;
  67. font-weight: 400;
  68. line-height: 56rpx;
  69. color: #FFFFFF;
  70. text-align: center;
  71. position: absolute;
  72. top: 0;
  73. left: 0;
  74. }
  75. .page {
  76. width: 750rpx;
  77. min-height: 100vh;
  78. background: rgba(246, 245, 250, 1);
  79. padding: 20rpx 24rpx 0;
  80. }
  81. .img {
  82. width: 702rpx;
  83. height: 280rpx;
  84. background: rgba(255, 255, 255, 1);
  85. border-radius: 16rpx;
  86. }
  87. </style>