repair.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <template>
  2. <view class="content">
  3. <view class="top hflex acenter jbetween">
  4. <view class="top_item" :class="active1 == 1 ? 'active1':''" @click="changeType(1)">我是船老板</view>
  5. <view class="top_item" :class="active1 == 2 ? 'active1':''" @click="changeType(2)">我是维修工</view>
  6. </view>
  7. <view class="order">
  8. <view class="tabs hflex acenter jbetween">
  9. <block v-for="(item,index) in tabs" :key="index">
  10. <view class="tabs_item" :class="active == item.id? 'active': ''" @click="changeTabs(item.id)">{{item.text}}</view>
  11. </block>
  12. </view>
  13. <view class="box">
  14. <my-order @toDetail="toDetail" :active1="active1" :list="pageList" order_type="5"></my-order>
  15. </view>
  16. <view class="add vflex acenter jcenter" v-show="active1 == 1">
  17. <u-icon name="plus" color='#fff' size="16"></u-icon>
  18. <view class="add_text">发布维修单</view>
  19. </view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. import $api from '@/static/js/api.js'
  25. var that = ''
  26. export default {
  27. data() {
  28. return {
  29. tabs: [
  30. {
  31. id: 1,
  32. text: '未报价'
  33. },
  34. {
  35. id: 2,
  36. text: '已报价'
  37. },
  38. {
  39. id: 3,
  40. text: '已匹配'
  41. }
  42. ],
  43. active: 1,
  44. active1: 1,
  45. pageList: [
  46. {
  47. id: 1,
  48. order_no: 'cbz1234567',
  49. type: '0',
  50. name: '昨天晚上开始船舱一直往里面漏水,早上忽冷忽热,不知道什么原因,请速来维修',
  51. repair_date: '2022-11-04~12-04',
  52. address: '浦东区 滨河路 江东造船厂',
  53. is_urgent: 1,
  54. offer: '1999.89'
  55. },
  56. {
  57. id: 1,
  58. order_no: 'cbz1234567',
  59. type: '2',
  60. name: '昨天晚上开始船舱一直往里面漏水,早上忽冷忽热,不知道什么原因,请速来维修',
  61. repair_date: '2022-11-04~12-04',
  62. address: '浦东区 滨河路 江东造船厂',
  63. is_urgent: 0,
  64. offer: '1999.89'
  65. }
  66. ]
  67. }
  68. },
  69. onLoad() {
  70. that = this
  71. },
  72. methods: {
  73. // 切换tabs
  74. changeTabs(id) {
  75. that.active = id
  76. },
  77. // 切换身份
  78. changeType(id) {
  79. that.active1 = id
  80. },
  81. toDetail(e) {
  82. console.log(e);
  83. $api.jump('/page_mine/pages/order/repairDetail')
  84. }
  85. },
  86. }
  87. </script>
  88. <style lang="scss" scoped>
  89. .content {
  90. background: #f4f4f4;
  91. .top {
  92. width: 650rpx;
  93. height: 80rpx;
  94. margin: 20rpx auto;
  95. background-color: #fff;
  96. border-radius: 40rpx;
  97. .top_item {
  98. width: 50%;
  99. height: 68rpx;
  100. text-align: center;
  101. font-size: 30rpx;
  102. color: #222;
  103. line-height: 68rpx;
  104. }
  105. .active1 {
  106. width: 320rpx;
  107. height: 68rpx;
  108. border-radius: 34rpx;
  109. background-color: #506dff;
  110. color: #fff;
  111. }
  112. }
  113. .order {
  114. width: 100%;
  115. background-color: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0) 100%);
  116. border-radius: 40rpx 40rpx 0 0;
  117. }
  118. .tabs {
  119. width: 100%;
  120. // background-color: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0) 100%);
  121. box-sizing: border-box;
  122. padding: 20rpx 40rpx;
  123. .tabs_item {
  124. font-size: 32rpx;
  125. color: #242424;
  126. }
  127. .active {
  128. color: #222;
  129. position: relative;
  130. }
  131. .active::after {
  132. content: "";
  133. position: absolute;
  134. width: 48rpx;
  135. height: 8rpx;
  136. background-color: #506dff;
  137. border-radius: 4rpx;
  138. bottom: -14rpx;
  139. left: 24rpx;
  140. }
  141. }
  142. .box {
  143. padding: 0 30rpx;
  144. }
  145. .add {
  146. width: 96rpx;
  147. height: 96rpx;
  148. border-radius: 50%;
  149. background: linear-gradient(180deg, #88A6FF 0%, #506DFF 100%);
  150. position: fixed;
  151. right: 30rpx;
  152. bottom: 166rpx;
  153. .add_text {
  154. font-size: 14rpx;
  155. font-weight: 400;
  156. color: #FFFFFF;
  157. line-height: 18rpx;
  158. }
  159. }
  160. }
  161. </style>