car.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <template>
  2. <view>
  3. <view class="tab">
  4. <u-tabs :list="tab" :scrollable="false" itemStyle="width:200px;height:50px" lineWidth="60" @click="click"></u-tabs>
  5. </view>
  6. <view class="goodsList">
  7. <view class="item" v-for="(item, index) in driverList" :key="index">
  8. <view class="title">{{item.createTime}}</view>
  9. <view class="state" v-if="item.driverResult == 0">
  10. <text class="icon">&#xe830;</text>
  11. <text>待确认</text>
  12. </view>
  13. <view class="state" v-if="item.driverResult == 1">
  14. <text class="icon" style="color: #13ce66">&#xe830;</text>
  15. <text>已确认</text>
  16. </view>
  17. <!-- <image src="../../../../../static/news.jpg" mode="aspectFill" class="pic"></image> -->
  18. <view class="con">
  19. <view class="productName omit" style="display: flex;">
  20. <uni-icons type="location" size="24"></uni-icons>贸易地点:{{ item.tradeAreaName }}</view>
  21. <view class="productName omit" style="display: flex;">
  22. <uni-icons type="circle" size="24"></uni-icons>运送货物:{{ item.goodsName }}
  23. </view>
  24. </view>
  25. <view class="clear"></view>
  26. <view class="op">
  27. <view class="date">2022-12-12:12:12</view>
  28. <template v-if="item.driverResult == 0">
  29. <view class="an" style="color: #f44336" @click.stop="confirm(item, 2, '确认拒绝?')">拒绝接单</view>
  30. <view class="an" style="color: #4581fb" @click.stop="confirm(item, 1, '确认接单?')">确认接单</view>
  31. </template>
  32. </view>
  33. </view>
  34. <view class="loading" v-if="loadMore"><u-loadmore :status="loadMore ? 'loading' : 'nomore'" /></view>
  35. <u-empty v-if="!loadMore && driverList.length == 0"></u-empty>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. export default {
  41. data() {
  42. return {
  43. tab: [
  44. { name: '待确认', driverResult: 0},
  45. { name: '已确认', driverResult: 1},
  46. ],
  47. param: { pageNo: 1, pageSize: 10},
  48. loadMore: true,
  49. driverList: [],
  50. user:this.getUser()
  51. }
  52. },
  53. onLoad() {
  54. this.getDriverOrderList()
  55. },
  56. methods: {
  57. // 司机查询订单 ?driverResult=
  58. getDriverOrderList(){
  59. this.http.request({
  60. url: '/transport-server/app/TbCarRecord/getAppList',
  61. loading: 'false',
  62. data: this.param,
  63. success: res => {
  64. this.loadMore = parseInt(res.data.pageCount) > this.param.pageNo;
  65. if (res.data.data) {
  66. this.driverList.push(...res.data.data);
  67. }
  68. this.driverList.map(item => {
  69. if(item.createTime == this.util.getDate('day')){
  70. item.createTime = '今天'
  71. }
  72. })
  73. }
  74. });
  75. },
  76. //点击tab切换
  77. click(e) {
  78. this.param.driverResult = e.driverResult;
  79. this.getDriverOrderList()
  80. },
  81. //司机处理
  82. confirm(item, type, content){
  83. let params = {
  84. carRecordId: 0,
  85. levelOneOrderId: 0,
  86. orderNo: "",
  87. loadingAddress: "",
  88. unloadingAddress: "",
  89. comment: "",
  90. tradeAreaId: item.tradeAreaId,
  91. tradeAreaName: item.tradeAreaName,
  92. driverId: item.driverId,
  93. driverName: user.name,
  94. driverPhone: user.phone,
  95. vehicleId: item.vehicleId,
  96. vehicleName: 0,
  97. vehicleType: 0
  98. }
  99. uni.showModal({
  100. title: '提示',
  101. content: content,
  102. success: res => {
  103. if (res.confirm) {
  104. if(type == 1){
  105. this.http.request({
  106. url: '/transport-server/app/TbVehicle/driverAgree',
  107. data: params,
  108. method: 'POST',
  109. success: resp => {
  110. uni.showToast({ title: '操作成功' });
  111. this.refresh();
  112. }
  113. });
  114. }else{
  115. }
  116. }
  117. }
  118. });
  119. }
  120. }
  121. }
  122. </script>
  123. <style>
  124. </style>