searchOrder.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. <template>
  2. <view class="container">
  3. <view class="head-bar">
  4. <view class="search-container flex-row flex-between">
  5. <view class="search-control flex-row flex-between">
  6. <picker @change="bindPickerChange" :value="selectedTypeIndex" :range="searchTypeArr">
  7. <view class="picker">
  8. {{ searchTypeArr[selectedTypeIndex] }}
  9. </view>
  10. </picker>
  11. <input
  12. type="text"
  13. :value="seach_value"
  14. class="input-search"
  15. confirm-type="搜索"
  16. placeholder="请输入"
  17. placeholder-style="font-size: 12px;"
  18. @input="bindInputSearch"
  19. />
  20. </view>
  21. <view class="search-btn">
  22. <view class="btn-search" @tap="bindHandleSearch">搜索</view>
  23. </view>
  24. </view>
  25. </view>
  26. <view style="height: 55px"></view>
  27. <view class="list-group">
  28. <view class="list-item" v-for="(item, index) in orderList" :key="index">
  29. <view class="list-item-head flex-row flex-between">
  30. <view class="order-time">{{ item.ctime }}</view>
  31. <view class="order-status">
  32. <text v-if="item.pay_type == 1 && item.status == 0" class="i-status to-check">线下-待确认</text>
  33. <text v-if="item.pay_type == 1 && item.status == 1" class="i-status to-pay-ok">线下 - 支付成功</text>
  34. <text v-if="item.pay_type == 0 && item.status == 1" class="i-status to-pay-ok">微信 - 支付成功</text>
  35. </view>
  36. </view>
  37. <view class="list-item-body">
  38. <view class="form-item flex-row flex-between">
  39. <view class="form-label">门店</view>
  40. <view class="form-value">{{ item.shop_name }}</view>
  41. </view>
  42. <view class="form-item flex-row flex-between">
  43. <view class="form-label">电池编号</view>
  44. <view class="form-value" @tap="handleClipboard" :data-clipdata="item.battery_sn">
  45. {{ item.battery_sn }}
  46. <image src="/static/resource/images/clip.png" style="width: 10px; height: 10px; margin-left: 5px"></image>
  47. </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_price / 100 }}元/</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">{{ item.user_name }} {{ item.phone }}</view>
  61. </view>
  62. <view class="form-item flex-row flex-between">
  63. <view class="form-label">租赁时长</view>
  64. <view class="form-value">
  65. <text>{{ item.hire_duration }}</text>
  66. <text v-if="item.hire_duration_unit == 1">天</text>
  67. <text v-else-if="item.hire_duration_unit == 2">月</text>
  68. <text v-else-if="item.hire_duration_unit == 3">年</text>
  69. </view>
  70. </view>
  71. <view class="form-item flex-row flex-between">
  72. <view class="form-label">应付金额</view>
  73. <view class="form-value pay-money">{{ item.money / 100 }}元</view>
  74. </view>
  75. </view>
  76. <view v-if="item.pay_type == 1 && item.status == 0" class="list-item-footer flex-row flex-end">
  77. <view class="op-btn" @tap="bindCheckPay" :data-ordersn="item.order_sn" :data-idx="index">确认支付</view>
  78. </view>
  79. </view>
  80. </view>
  81. <no-more :is-loading="isLoading" />
  82. </view>
  83. </template>
  84. <script>
  85. import noMore from '@/component/nomore/nomore';
  86. // pages/searchOrder/searchOrder.js
  87. var config = require('../../common/config.js');
  88. var http = require('../../common/http.js');
  89. var common = require('../../common/common.js');
  90. var storage = require('../../common/storage.js');
  91. export default {
  92. components: {
  93. noMore
  94. },
  95. data() {
  96. return {
  97. searchTypeArr: ['订单号', '设备编号', '手机号码'],
  98. selectedTypeIndex: 0,
  99. start_page: 1,
  100. limit_page: 10,
  101. orderList: [],
  102. seach_value: '',
  103. order_sn: '',
  104. battery_sn: '',
  105. phone: '',
  106. isLoading: false
  107. };
  108. },
  109. /**
  110. * 生命周期函数--监听页面加载
  111. */
  112. onLoad: function (options) {
  113. if ('type' in options) {
  114. this.setData({
  115. selectedTypeIndex: parseInt(options.type)
  116. });
  117. }
  118. if ('search' in options) {
  119. this.setData({
  120. seach_value: options.search
  121. });
  122. this.bindHandleSearch();
  123. }
  124. },
  125. /**
  126. * 生命周期函数--监听页面初次渲染完成
  127. */
  128. onReady: function () {},
  129. /**
  130. * 生命周期函数--监听页面显示
  131. */
  132. onShow: function () {},
  133. /**
  134. * 生命周期函数--监听页面隐藏
  135. */
  136. onHide: function () {},
  137. /**
  138. * 生命周期函数--监听页面卸载
  139. */
  140. onUnload: function () {},
  141. /**
  142. * 页面相关事件处理函数--监听用户下拉动作
  143. */
  144. onPullDownRefresh: function () {},
  145. /**
  146. * 页面上拉触底事件的处理函数
  147. */
  148. onReachBottom: function () {
  149. this.setData({
  150. isLoading: true
  151. });
  152. this.start_page++;
  153. this.loadOrderList();
  154. },
  155. /**
  156. * 用户点击右上角分享
  157. */
  158. onShareAppMessage: function () {},
  159. methods: {
  160. bindPickerChange: function (e) {
  161. console.log('picker发送选择改变,携带值为', e.detail.value);
  162. this.setData({
  163. selectedTypeIndex: e.detail.value
  164. });
  165. },
  166. bindInputSearch: function (e) {
  167. this.seach_value = e.detail.value;
  168. },
  169. bindHandleSearch: function () {
  170. if (common.isEmpty(this.seach_value)) {
  171. common.simpleToast('请输入搜索的内容');
  172. return;
  173. }
  174. common.loading();
  175. this.order_sn = '';
  176. this.battery_sn = '';
  177. this.phone = '';
  178. if (this.selectedTypeIndex == 0) {
  179. this.order_sn = this.seach_value;
  180. } else if (this.selectedTypeIndex == 1) {
  181. this.battery_sn = this.seach_value;
  182. } else if (this.selectedTypeIndex == 2) {
  183. this.phone = this.seach_value;
  184. }
  185. this.refreshOrderList();
  186. },
  187. refreshOrderList() {
  188. this.setData({
  189. start_page: 1,
  190. orderList: []
  191. });
  192. this.loadOrderList();
  193. },
  194. loadOrderList: function () {
  195. const pData = {
  196. page: this.start_page,
  197. limit: this.limit_page,
  198. order_status: 3,
  199. order_sn: this.order_sn,
  200. battery_sn: this.battery_sn,
  201. phone: this.phone
  202. };
  203. const that = this;
  204. common.loading();
  205. http.postApi(config.API_ORDER_CHILDREN_LIST, pData, function (resp) {
  206. uni.hideLoading();
  207. uni.stopPullDownRefresh();
  208. if (resp.data.code === 200) {
  209. let orderList = that.orderList;
  210. orderList.push.apply(orderList, resp.data.data.list);
  211. that.setData({
  212. orderList: orderList,
  213. isLoading: false
  214. });
  215. } else {
  216. common.simpleToast(resp.data.msg);
  217. }
  218. });
  219. },
  220. bindCheckPay: function (e) {
  221. const idx = e.currentTarget.dataset.idx;
  222. const order_sn = e.currentTarget.dataset.ordersn;
  223. const orderInfo = this.orderList[idx];
  224. if (!orderInfo) {
  225. common.simpleToast('订单错误');
  226. return;
  227. }
  228. if (orderInfo.pay_type != 1 || orderInfo.status != 0) {
  229. common.simpleToast('该订单不是线下支付订单');
  230. return;
  231. }
  232. const that = this;
  233. uni.showModal({
  234. title: '提示',
  235. content: '请确定该用户已线下支付',
  236. showCancel: true,
  237. cancelText: '取消',
  238. cancelColor: '',
  239. confirmText: '确定',
  240. confirmColor: '',
  241. success: function (res) {
  242. if (res.confirm) {
  243. const pData = {
  244. order_sn: order_sn,
  245. idx: idx
  246. };
  247. http.postApi(config.API_ORDER_PAY_SUCCESS, pData, function (resp) {
  248. if (resp.data.code === 200) {
  249. that.refreshOrderList();
  250. } else {
  251. common.simpleToast(resp.data.msg);
  252. }
  253. });
  254. }
  255. },
  256. fail: function (res) {},
  257. complete: function (res) {}
  258. });
  259. },
  260. handleClipboard() {
  261. console.log('占位:函数 handleClipboard 未声明');
  262. }
  263. }
  264. };
  265. </script>
  266. <style>
  267. @import './searchOrder.css';
  268. </style>