orderlist.vue 9.2 KB

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