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.

add-work-list.vue 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <template>
  2. <view class="content">
  3. <view class="list">
  4. <view class="title">
  5. <view>
  6. <image src="/static/image/myx.png" mode=""></image>
  7. <text class="question">ETC使用问题</text>
  8. </view>
  9. <text class="status">待处理</text>
  10. </view>
  11. <view class="bot">
  12. <view class="details">
  13. <view><text>工单号码:</text><view>0921793812311110</view></view>
  14. <view><text>发生日期:</text><view>2025-03-05</view></view>
  15. <view><text>客户诉求:</text><view>这是客户诉求详情这是客户诉求详情,这是 客户诉求详情。</view></view>
  16. </view>
  17. <view class="time">2025.03.06 10:21:09</view>
  18. </view>
  19. </view>
  20. </view>
  21. <image class="add" src="/static/image/wode.png" mode=""></image>
  22. </template>
  23. <script setup lang="ts">
  24. </script>
  25. <style lang="scss" scoped>
  26. .content{
  27. padding-top: 30rpx;
  28. box-sizing: border-box;
  29. }
  30. .list{
  31. background: #FFFFFF;
  32. border-radius: 12rpx;
  33. border: 1px solid #FFFFFF;
  34. width: 90%;
  35. margin: 0 auto;
  36. font-weight: 400;
  37. .title{
  38. padding: 0 20rpx;
  39. display: flex;
  40. justify-content: space-between;
  41. align-items: center;
  42. height: 80rpx;
  43. image{
  44. width: 23rpx;
  45. height: 23rpx;
  46. }
  47. .question{
  48. font-size: 30rpx;
  49. color: #01243A;
  50. margin-left: 10rpx;
  51. }
  52. .status{
  53. font-size: 24rpx;
  54. color: #1458E5;
  55. background: #E3ECFF;
  56. border-radius: 6rpx;
  57. border: 1px solid #1458E5;
  58. padding: 4rpx 6rpx;
  59. }
  60. }
  61. .bot{
  62. padding: 0 20rpx;
  63. .details{
  64. font-size: 26rpx;
  65. padding: 10rpx 0 5rpx 0;
  66. view{
  67. display: flex;
  68. margin-bottom: 5rpx;
  69. text{
  70. color: #999999;
  71. width: 21%;
  72. }
  73. view{
  74. color: #002025;
  75. width: 79%;
  76. }
  77. }
  78. }
  79. .time{
  80. font-size: 24rpx;
  81. color: #999999;
  82. padding:20rpx 0;
  83. border-top: 1rpx solid #DCDCDC;
  84. }
  85. }
  86. }
  87. .add{
  88. position: fixed;
  89. z-index: 999;
  90. bottom: 40rpx;
  91. right: 40rpx;
  92. width: 174rpx;
  93. height: 174rpx;
  94. }
  95. </style>