帧视界壹通告,付费看视频的微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

108 lines
2.0 KiB

  1. <template>
  2. <view class="promotionRecordList">
  3. <view class="item" v-for="(item, index) in list"
  4. @click="$utils.navigateTo('/publish/postDetail?id=123')"
  5. :key="index">
  6. <image src="/static/image/center/1.png" style="width: 40%"></image>
  7. <view class="text">
  8. <view>
  9. <view class="title">
  10. {{ item.title }}
  11. </view>
  12. <view class="createBy">
  13. <view class="">
  14. 推广时效{{ item.createBy }}
  15. </view>
  16. </view>
  17. </view>
  18. <view>
  19. <view class="isPay">
  20. <view class="">
  21. 价格{{ item.isPay }}
  22. </view>
  23. </view>
  24. <view class="createTime">
  25. 推广时间{{ item.createTime }}
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. name:"promotionRecordList",
  35. props : ['list'],
  36. data() {
  37. return {
  38. };
  39. }
  40. }
  41. </script>
  42. <style lang="scss" scoped>
  43. .promotionRecordList{
  44. width: 90%;
  45. .item{
  46. height: 220rpx;
  47. width: 100%;
  48. background-color: #fff;
  49. overflow: hidden;
  50. border-radius: 10rpx;
  51. color: #777;
  52. display: flex;
  53. font-size: 24rpx;
  54. margin: 30rpx 0;
  55. image{
  56. width: 50%;
  57. height: 100%;
  58. }
  59. .text{
  60. display: flex;
  61. flex-direction: column;
  62. justify-content: space-around;
  63. padding: 10rpx 0 10rpx 16rpx;
  64. width: 52%;
  65. .title{
  66. font-size: 30rpx;
  67. font-weight: 600;
  68. color: #000;
  69. }
  70. .createBy{
  71. display: flex;
  72. justify-content: space-between;
  73. &>view{
  74. display: flex;
  75. align-items: center;
  76. justify-content: center;
  77. }
  78. }
  79. .isPay{
  80. display: flex;
  81. color: #7395f4;
  82. justify-content: space-between;
  83. &>view{
  84. display: flex;
  85. align-items: center;
  86. justify-content: center;
  87. }
  88. }
  89. .createTime{
  90. display: flex;
  91. justify-content: space-between;
  92. &>view{
  93. display: flex;
  94. align-items: center;
  95. justify-content: center;
  96. }
  97. }
  98. }
  99. }
  100. }
  101. </style>