articleDetail.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. import * as API from '@/apis/pagejs/packages.js'
  41. export default {
  42. data() {
  43. return {
  44. }
  45. },
  46. methods: {
  47. }
  48. }
  49. </script>
  50. <style scoped lang="scss">
  51. .main {
  52. padding: 40rpx 32rpx;
  53. // 标题
  54. .title {
  55. color: rgba(16, 16, 16, 1);
  56. font-size: 36rpx;
  57. }
  58. // 其他信息
  59. .infos {
  60. display: flex;
  61. align-items: center;
  62. margin-top: 24rpx;
  63. margin-bottom: 36rpx;
  64. .photo {
  65. width: 48rpx;
  66. height: 48rpx;
  67. border-radius: 50px;
  68. img {
  69. width: 48rpx;
  70. height: 48rpx;
  71. }
  72. }
  73. .name {
  74. color: rgba(16, 16, 16, 1);
  75. margin-left: 8rpx;
  76. }
  77. .date {
  78. color: rgba(119, 119, 119, 1);
  79. margin-left: 32rpx;
  80. }
  81. .tag {
  82. flex: 1;
  83. color: rgba(39, 149, 253, 1);
  84. text-align: right;
  85. }
  86. }
  87. // 文章内容
  88. .content{
  89. color: rgba(16, 16, 16, 1);
  90. line-height: 56rpx;
  91. // text-align: j;
  92. }
  93. // 图片
  94. .picture{
  95. margin-top: 24rpx;
  96. border-radius: 4px;
  97. width: 100%;
  98. height: 400rpx;
  99. img{
  100. width: 100%;
  101. height: 100%;
  102. }
  103. }
  104. }
  105. </style>
  106. r