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.8KB

1 月之前
1 月之前
1 月之前
1 月之前
1 月之前
1 月之前
1 月之前
1 月之前
1 月之前
1 月之前
1 月之前
1 月之前
1 月之前
1 月之前
1 月之前
1 月之前
1 月之前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <template>
  2. <view class="content">
  3. <view class="list">
  4. <view class="title" :style="{'--bgimg':`url(${$imgUrl}etcbg.png)`}">
  5. <view class="title_left">
  6. <image :src="`${$imgUrl}etc.png`" mode=""></image>
  7. <text class="question">ETC使用问题</text>
  8. </view>
  9. <text class="statusdcl">待处理</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="`${$imgUrl}etcadd.png`" mode="" @click="add()"></image>
  22. </template>
  23. <script setup lang="ts">
  24. import {navTo} from "@/utils/utils";
  25. const add=()=>{
  26. navTo(`/subpackage/after-sale/work-order/add-work-order`)
  27. }
  28. </script>
  29. <style lang="scss" scoped>
  30. .content{
  31. padding-top: 30rpx;
  32. box-sizing: border-box;
  33. }
  34. .list{
  35. background: #FFFFFF;
  36. border-radius: 12rpx;
  37. border: 1px solid #FFFFFF;
  38. width: 90%;
  39. margin: 0 auto;
  40. font-weight: 400;
  41. .title{
  42. padding: 0 20rpx;
  43. display: flex;
  44. justify-content: space-between;
  45. align-items: center;
  46. height: 80rpx;
  47. background-image: var(--bgimg);
  48. background-size: 100% 100%;
  49. background-repeat: no-repeat;
  50. .title_left{
  51. display: flex;
  52. align-items: center;
  53. }
  54. image{
  55. width: 50rpx;
  56. height: 50rpx;
  57. }
  58. .question{
  59. font-size: 30rpx;
  60. color: #01243A;
  61. margin-left: 10rpx;
  62. }
  63. // 待处理
  64. .statusdcl{
  65. font-size: 24rpx;
  66. color: #1458E5;
  67. background: #E3ECFF;
  68. border-radius: 6rpx;
  69. border: 1px solid #1458E5;
  70. padding: 4rpx 6rpx;
  71. }
  72. // 待补充
  73. .statusdbc{
  74. font-size: 24rpx;
  75. color: #42D175;
  76. background:#E6FFEF;
  77. border-radius: 6rpx;
  78. border: 1px solid #42D175;
  79. padding: 4rpx 6rpx;
  80. }
  81. // 已结束
  82. .statusyjs{
  83. font-size: 24rpx;
  84. color: #839AB4;
  85. background: #DCEFFC;
  86. border-radius: 6rpx;
  87. border: 1px solid #839AB4;
  88. padding: 4rpx 6rpx;
  89. }
  90. }
  91. .bot{
  92. padding: 0 20rpx;
  93. .details{
  94. font-size: 26rpx;
  95. padding: 10rpx 0 5rpx 0;
  96. view{
  97. display: flex;
  98. margin-bottom: 5rpx;
  99. text{
  100. color: #999999;
  101. width: 21%;
  102. }
  103. view{
  104. color: #002025;
  105. width: 79%;
  106. }
  107. }
  108. }
  109. .time{
  110. font-size: 24rpx;
  111. color: #999999;
  112. padding:20rpx 0;
  113. border-top: 1rpx solid #DCDCDC;
  114. }
  115. }
  116. }
  117. .add{
  118. position: fixed;
  119. z-index: 999;
  120. bottom: 20rpx;
  121. right: 0rpx;
  122. width: 174rpx;
  123. height: 174rpx;
  124. }
  125. </style>