ty-paper.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <template>
  2. <view class="page">
  3. <view class="top u-flex u-row-between">
  4. <view class="u-flex">
  5. <text class="fen">教材级别</text>
  6. <image src="/static/images/down.png" style="width: 12rpx;height: 8rpx;margin-left: 8rpx;" mode="">
  7. </image>
  8. </view>
  9. <view class="u-flex">
  10. <text class='fen'>教学层次</text>
  11. <image src="/static/images/down.png" style="width: 12rpx;height: 8rpx;margin-left: 8rpx;" mode="">
  12. </image>
  13. </view>
  14. <view class="u-flex">
  15. <text class='fen'>专业分类</text>
  16. <image src="/static/images/down.png" style="width: 12rpx;height: 8rpx;margin-left: 8rpx;" mode="">
  17. </image>
  18. </view>
  19. <view class="" class='fen'>获奖教材</view>
  20. <view class="new">新书推荐</view>
  21. </view>
  22. <view class="u-flex u-row-between" style="flex-wrap: wrap;">
  23. <view class="" v-for="(item,index) in 5" :key="index" style="margin-top: 26rpx;">
  24. <image src="/static/logo.png" style="width: 334rpx;height: 460rpx;" mode=""></image>
  25. <view class="title">新时代大学生劳动教育教…</view>
  26. <view class="writer">丁爱萍,林秀丽</view>
  27. <view class="" style="margin-top: 8rpx;">
  28. <text class="ding">定价</text>
  29. <text class="money">¥38.5</text>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. export default {
  37. data() {
  38. return {
  39. };
  40. }
  41. }
  42. </script>
  43. <style lang="scss">
  44. .title {
  45. font-size: 28rpx;
  46. font-family: PingFangSC, PingFang SC;
  47. font-weight: 500;
  48. color: #333333;
  49. margin-top: 20rpx;
  50. }
  51. .writer {
  52. font-size: 24rpx;
  53. font-family: PingFangSC, PingFang SC;
  54. font-weight: 400;
  55. color: #444444;
  56. margin-top: 8rpx;
  57. }
  58. .money {
  59. font-size: 28rpx;
  60. font-family: SFPro, SFPro;
  61. font-weight: 400;
  62. color: #CC3300;
  63. }
  64. .ding {
  65. font-size: 24rpx;
  66. font-family: PingFangSC, PingFang SC;
  67. font-weight: 400;
  68. color: #222222;
  69. }
  70. .page {
  71. width: 750rpx;
  72. background: #FFFFFF;
  73. border-radius: 28rpx 28rpx 0rpx 0rpx;
  74. padding: 28rpx 24rpx;
  75. }
  76. .top {
  77. .fen {
  78. font-size: 24rpx;
  79. font-family: PingFangSC, PingFang SC;
  80. font-weight: 400;
  81. color: #444444;
  82. }
  83. .new {
  84. font-size: 24rpx;
  85. font-family: PingFangSC, PingFang SC;
  86. font-weight: 500;
  87. color: #06A971;
  88. }
  89. }
  90. </style>