articleDetail.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <template>
  2. <view>
  3. <u-navbar back-text="文章详情" back-icon-size="28" back-icon-color="#ffffff"
  4. :background="{backgroundColor: '#2795FD',}" :back-text-style="{color: '#ffffff'}"></u-navbar>
  5. <view class="main">
  6. <!-- 标题 -->
  7. <view class="title">
  8. 企业现急需熟练机床车工5名,如有资源请联系0716-8818118 刘女士。
  9. </view>
  10. <!-- 其他信息 -->
  11. <view class="infos">
  12. <view class="photo">
  13. <img src="../../assets/img/headPortrait.png"></img>
  14. </view>
  15. <view class="name">
  16. 许愿
  17. </view>
  18. <view class="date">
  19. 2023-07-01
  20. </view>
  21. <view class="tag">
  22. 急需用工
  23. </view>
  24. </view>
  25. <u-line color="#CFD2D5" />
  26. <!-- 文章内容 -->
  27. <view class="content">
  28. 企业现急需熟练机床车工5名,如有资源请联系0716-8818118 刘女士。企业现急需熟练机床车工5名,如有资源请联系0716-8818118
  29. 刘女士。企业现急需熟练机床车工5名,如有资源请联系0716-8818118 刘女士。企业现急需熟练机床车工5名,如有资源请联系0716-8818118
  30. 刘女士。企业现急需熟练机床车工5名,如有资源请联系0716-8818118 刘女士。
  31. </view>
  32. <!-- 图片 -->
  33. <view class="picture">
  34. <img src="../../assets/img/articlePicture.png" alt="">
  35. </view>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. export default {
  41. data() {
  42. return {
  43. }
  44. },
  45. methods: {
  46. }
  47. }
  48. </script>
  49. <style scoped lang="scss">
  50. .main {
  51. padding: 40rpx 32rpx;
  52. // 标题
  53. .title {
  54. color: rgba(16, 16, 16, 1);
  55. font-size: 36rpx;
  56. }
  57. // 其他信息
  58. .infos {
  59. display: flex;
  60. align-items: center;
  61. margin-top: 24rpx;
  62. margin-bottom: 36rpx;
  63. .photo {
  64. width: 48rpx;
  65. height: 48rpx;
  66. border-radius: 50px;
  67. img {
  68. width: 48rpx;
  69. height: 48rpx;
  70. }
  71. }
  72. .name {
  73. color: rgba(16, 16, 16, 1);
  74. margin-left: 8rpx;
  75. }
  76. .date {
  77. color: rgba(119, 119, 119, 1);
  78. margin-left: 32rpx;
  79. }
  80. .tag {
  81. flex: 1;
  82. color: rgba(39, 149, 253, 1);
  83. text-align: right;
  84. }
  85. }
  86. // 文章内容
  87. .content{
  88. color: rgba(16, 16, 16, 1);
  89. line-height: 56rpx;
  90. // text-align: j;
  91. }
  92. // 图片
  93. .picture{
  94. margin-top: 24rpx;
  95. border-radius: 4px;
  96. width: 100%;
  97. height: 400rpx;
  98. img{
  99. width: 100%;
  100. height: 100%;
  101. }
  102. }
  103. }
  104. </style>
  105. r