zhengCe.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <template>
  2. <view class="box">
  3. <view class="nabBar" style="background-image: url('https://huli-app.wenlvti.net/app_static/WenWuGuanJia/image/cg_bg.png'); background-size: cover">
  4. <u-navbar :autoBack="true" title="政策法规" titleStyle="font-weight:bold;color:#000000" bgColor="rgba(255,255,255,0)" :placeholder="true"></u-navbar>
  5. </view>
  6. <!-- -->
  7. <view class="ban_box">
  8. <view class="ban_item">
  9. <view class="left_box">
  10. <image class="img" src="https://huli-app.wenlvti.net/app_static/WenWuGuanJia/image/fg_img.png"></image>
  11. </view>
  12. <view class="right_box">
  13. <view class="">中华人民共和国文物保护法(2017年修正本)</view>
  14. <view class="" style="margin-top: 30rpx; display: flex; align-items: center; text-align: center">
  15. <view class="zan">
  16. <uni-icons type="hand-up-filled" color="#c2c2c2" size="24"></uni-icons>
  17. <view class="">99点赞</view>
  18. </view>
  19. <view class="zan">
  20. <uni-icons type="eye-filled" color="#c2c2c2" size="24"></uni-icons>
  21. <view class="">99浏览</view>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. export default {
  31. data() {
  32. return {};
  33. },
  34. methods: {}
  35. };
  36. </script>
  37. <style>
  38. .box {
  39. width: 100%;
  40. background-color: #f3e2c8;
  41. /* height: auto; */
  42. height: 100%;
  43. padding-bottom: 50rpx;
  44. }
  45. .nabBar {
  46. height: 660rpx;
  47. }
  48. .ban_box {
  49. width: 90%;
  50. margin: auto;
  51. }
  52. .ban_item {
  53. margin-top: 40rpx;
  54. display: flex;
  55. justify-content: space-between;
  56. }
  57. .img {
  58. width: 100%;
  59. height: 100%;
  60. }
  61. .left_box {
  62. width: 400rpx;
  63. height: 205rpx;
  64. border: 4rpx solid #e4b171;
  65. }
  66. .right_box {
  67. padding-top: 10rpx;
  68. width: 400rpx;
  69. margin-left: 20rpx;
  70. }
  71. .zan {
  72. width: 120rpx;
  73. }
  74. </style>