orderlist.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. <template>
  2. <view class="container">
  3. <view class="main-container">
  4. <view class="nav-tab flex-row flex-between">
  5. <view class="order-type-container flex-row flex-start">
  6. <view :class="'nav-item ' + (navSelected == 1 ? 'nav-active' : '')" @tap="bindSelectNavTab"
  7. data-nav="1">{{$t('待确认')}}</view>
  8. <view :class="'nav-item ' + (navSelected == 2 ? 'nav-active' : '')" @tap="bindSelectNavTab"
  9. data-nav="2">{{$t('支付成功')}}</view>
  10. <view :class="'nav-item ' + (navSelected == 3 ? 'nav-active' : '')" @tap="bindSelectNavTab"
  11. data-nav="3">{{$t('全部')}}</view>
  12. </view>
  13. <view class="search-btn" style="margin-right: 20px" @tap="navigatorToPage"
  14. data-page="/myPages/pages/searchOrder/searchOrder">
  15. <image style="width: 19px; height: 19px" src="/static/resource/images/search-i.png"></image>
  16. </view>
  17. </view>
  18. <view class="list-group">
  19. <view class="list-item" v-for="(item, index) in orderList" :key="index">
  20. <view class="list-item-head flex-row flex-between">
  21. <view class="order-time">{{ item.ctime }}</view>
  22. <view class="order-status">
  23. <text v-if="item.pay_type == 1 && item.status == 0"
  24. class="i-status to-check">{{$t('线下-待确认')}}</text>
  25. <text v-if="item.pay_type == 1 && item.status == 1"
  26. class="i-status to-pay-ok">{{$t('线下-支付成功')}}</text>
  27. <text v-if="item.pay_type == 0 && item.status == 1"
  28. class="i-status to-pay-ok">{{$t('微信-支付成功')}}</text>
  29. </view>
  30. </view>
  31. <view class="list-item-body">
  32. <view class="form-item flex-row flex-between">
  33. <view class="form-label">{{$t('门店')}}</view>
  34. <view class="form-value">{{ item.shop_name }}</view>
  35. </view>
  36. <view class="form-item flex-row flex-between">
  37. <view class="form-label">{{$t('电池编号')}}</view>
  38. <view class="form-value" @tap="handleClipboard" :data-clipdata="item.battery_sn">
  39. {{ item.battery_sn }}
  40. <image src="/static/resource/images/clip.png"
  41. style="width: 10px; height: 10px; margin-left: 5px"></image>
  42. </view>
  43. </view>
  44. <view class="form-item flex-row flex-between">
  45. <view class="form-label">单价</view>
  46. <view class="form-value">
  47. <text>{{ item.hire_price / 100 + $t('元')}}/</text>
  48. <text v-if="item.hire_duration_unit == 1">{{$t('天')}}</text>
  49. <text v-else-if="item.hire_duration_unit == 2">{{$t('月')}}</text>
  50. <text v-else-if="item.hire_duration_unit == 3">{{$t('年')}}</text>
  51. </view>
  52. </view>
  53. <view class="form-item flex-row flex-between">
  54. <view class="form-label">{{$t('租赁用户')}}</view>
  55. <view class="form-value">{{ item.user_name }} {{ item.phone }}</view>
  56. </view>
  57. <view class="form-item flex-row flex-between">
  58. <view class="form-label">{{$t('租赁时长')}}</view>
  59. <view class="form-value">
  60. <text>{{ item.hire_duration }}</text>
  61. <text v-if="item.hire_duration_unit == 1">{{$t('天')}}</text>
  62. <text v-else-if="item.hire_duration_unit == 2">{{$t('月')}}</text>
  63. <text v-else-if="item.hire_duration_unit == 3">{{$t('年')}}</text>
  64. </view>
  65. </view>
  66. <view class="form-item flex-row flex-between">
  67. <view class="form-label">{{$t('应付金额')}}</view>
  68. <view class="form-value pay-money">{{ item.money / 100 }}元</view>
  69. </view>
  70. </view>
  71. <view v-if="item.pay_type == 1 && item.status == 0" class="list-item-footer flex-row flex-end">
  72. <view class="op-btn" @tap="bindCheckPay" :data-ordersn="item.order_sn" :data-idx="index">
  73. {{$t('确认支付')}}</view>
  74. </view>
  75. </view>
  76. </view>
  77. <no-more :is-loading="isLoading" />
  78. </view>
  79. </view>
  80. </template>
  81. <script>
  82. import noMore from '@/component/nomore/nomore';
  83. // pages/orderlist/orderlist.js
  84. var config = require('../../common/config.js');
  85. var http = require('../../common/http.js');
  86. var common = require('../../common/common.js');
  87. var storage = require('../../common/storage.js');
  88. export default {
  89. components: {
  90. noMore
  91. },
  92. data() {
  93. return {
  94. navSelected: 1,
  95. start_page: 1,
  96. limit_page: 10,
  97. orderList: [],
  98. isLoading: false
  99. };
  100. },
  101. /**
  102. * 生命周期函数--监听页面加载
  103. */
  104. onLoad: function(options) {
  105. uni.setNavigationBarTitle({
  106. title: this.$t('订单列表')
  107. });
  108. this.refreshOrderList();
  109. },
  110. /**
  111. * 生命周期函数--监听页面显示
  112. */
  113. onShow: function() {
  114. uni.setNavigationBarTitle({
  115. title: this.$t('订单列表')
  116. });
  117. },
  118. /**
  119. * 用户点击右上角分享
  120. */
  121. onShareAppMessage: function() {},
  122. /**
  123. * 页面相关事件处理函数--监听用户下拉动作
  124. */
  125. onPullDownRefresh: function() {
  126. this.refreshOrderList();
  127. },
  128. /**
  129. * 页面上拉触底事件的处理函数
  130. */
  131. onReachBottom: function() {
  132. this.setData({
  133. isLoading: true
  134. });
  135. this.start_page++;
  136. this.loadOrderList();
  137. },
  138. methods: {
  139. bindSelectNavTab: function(e) {
  140. const navSelected = e.currentTarget.dataset.nav || 1;
  141. this.setData({
  142. navSelected: navSelected,
  143. start_page: 1,
  144. orderList: []
  145. });
  146. this.loadOrderList();
  147. },
  148. refreshOrderList() {
  149. this.setData({
  150. start_page: 1,
  151. orderList: []
  152. });
  153. this.loadOrderList();
  154. },
  155. loadOrderList: function() {
  156. const pData = {
  157. page: this.start_page,
  158. limit: this.limit_page,
  159. order_status: this.navSelected
  160. };
  161. const that = this;
  162. common.loading(this);
  163. http.postApi(config.API_ORDER_CHILDREN_LIST, pData, function(resp) {
  164. uni.hideLoading();
  165. uni.stopPullDownRefresh();
  166. if (resp.data.code === 200) {
  167. let orderList = that.orderList;
  168. orderList.push.apply(orderList, resp.data.data.list);
  169. that.setData({
  170. orderList: orderList,
  171. isLoading: false
  172. });
  173. } else {
  174. common.simpleToast(that, resp.data.msg);
  175. }
  176. });
  177. },
  178. bindCheckPay: function(e) {
  179. const idx = e.currentTarget.dataset.idx;
  180. const order_sn = e.currentTarget.dataset.ordersn;
  181. const orderInfo = this.orderList[idx];
  182. if (!orderInfo) {
  183. common.simpleToast(this, '订单错误');
  184. return;
  185. }
  186. if (orderInfo.pay_type != 1 || orderInfo.status != 0) {
  187. common.simpleToast(this, '该订单不是线下支付订单');
  188. return;
  189. }
  190. const that = this;
  191. uni.showModal({
  192. title: this.$t('提示'),
  193. content: this.$t('请确定该用户已线下支付'),
  194. showCancel: true,
  195. cancelText: this.$t('取消'),
  196. cancelColor: '',
  197. confirmText: this.$t('确定'),
  198. confirmColor: '',
  199. success: function(res) {
  200. if (res.confirm) {
  201. const pData = {
  202. order_sn: order_sn,
  203. idx: idx
  204. };
  205. http.postApi(config.API_ORDER_PAY_SUCCESS, pData, function(resp) {
  206. if (resp.data.code === 200) {
  207. that.refreshOrderList();
  208. } else {
  209. common.simpleToast(that, resp.data.msg);
  210. }
  211. });
  212. }
  213. },
  214. fail: function(res) {},
  215. complete: function(res) {}
  216. });
  217. },
  218. handleClipboard(e) {
  219. const clipdata = e.currentTarget.dataset.clipdata;
  220. uni.setClipboardData({
  221. data: clipdata
  222. });
  223. },
  224. navigatorToPage: function(e) {
  225. const page = e.currentTarget.dataset.page;
  226. if (!page) {
  227. return;
  228. }
  229. uni.navigateTo({
  230. url: page
  231. });
  232. }
  233. }
  234. };
  235. </script>
  236. <style>
  237. @import './orderlist.css';
  238. </style>