searchOrder.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  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="$t('搜索')"
  16. :placeholder="$t('请输入')"
  17. placeholder-style="font-size: 12px;"
  18. @input="bindInputSearch"
  19. />
  20. </view>
  21. <view class="search-btn">
  22. <view class="btn-search" @tap="bindHandleSearch">{{$t('搜索')}}</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">{{$t('线下-待确认')}}</text>
  33. <text v-if="item.pay_type == 1 && item.status == 1" class="i-status to-pay-ok">{{$t('线下-支付成功')}}</text>
  34. <text v-if="item.pay_type == 0 && item.status == 1" class="i-status to-pay-ok">{{$t('微信-支付成功')}}</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">{{$t('门店')}}</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">{{$t('电池编号')}}</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">{{$t('单价')}}</view>
  51. <view class="form-value">
  52. <text>{{ item.hire_price / 100 + $t('元')}}/</text>
  53. <text v-if="item.hire_duration_unit == 1">{{$t('天')}}</text>
  54. <text v-else-if="item.hire_duration_unit == 2">{{$t('月')}}</text>
  55. <text v-else-if="item.hire_duration_unit == 3">{{$t('年')}}</text>
  56. </view>
  57. </view>
  58. <view class="form-item flex-row flex-between">
  59. <view class="form-label">{{$t('租赁用户')}}</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">{{$t('租赁时长')}}</view>
  64. <view class="form-value">
  65. <text>{{ item.hire_duration }}</text>
  66. <text v-if="item.hire_duration_unit == 1">{{$t('天')}}</text>
  67. <text v-else-if="item.hire_duration_unit == 2">{{$t('月')}}</text>
  68. <text v-else-if="item.hire_duration_unit == 3">{{$t('年')}}</text>
  69. </view>
  70. </view>
  71. <view class="form-item flex-row flex-between">
  72. <view class="form-label">{{$t('应付金额')}}</view>
  73. <view class="form-value pay-money">{{ item.money / 100 + $t('元')}}</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">{{$t('确认支付')}}</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. // myPages/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: [this.$t('订单号'), this.$t('设备编号'), this.$t('手机号码')],
  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. uni.setNavigationBarTitle({
  114. title: this.$t('搜索')
  115. });
  116. if ('type' in options) {
  117. this.setData({
  118. selectedTypeIndex: parseInt(options.type)
  119. });
  120. }
  121. if ('search' in options) {
  122. this.setData({
  123. seach_value: options.search
  124. });
  125. this.bindHandleSearch();
  126. }
  127. },
  128. /**
  129. * 生命周期函数--监听页面初次渲染完成
  130. */
  131. onReady: function () {},
  132. /**
  133. * 生命周期函数--监听页面显示
  134. */
  135. onShow: function () {},
  136. /**
  137. * 生命周期函数--监听页面隐藏
  138. */
  139. onHide: function () {},
  140. /**
  141. * 生命周期函数--监听页面卸载
  142. */
  143. onUnload: function () {},
  144. /**
  145. * 页面相关事件处理函数--监听用户下拉动作
  146. */
  147. onPullDownRefresh: function () {},
  148. /**
  149. * 页面上拉触底事件的处理函数
  150. */
  151. onReachBottom: function () {
  152. this.setData({
  153. isLoading: true
  154. });
  155. this.start_page++;
  156. this.loadOrderList();
  157. },
  158. /**
  159. * 用户点击右上角分享
  160. */
  161. onShareAppMessage: function () {},
  162. methods: {
  163. bindPickerChange: function (e) {
  164. console.log('picker发送选择改变,携带值为', e.detail.value);
  165. this.setData({
  166. selectedTypeIndex: e.detail.value
  167. });
  168. },
  169. bindInputSearch: function (e) {
  170. this.seach_value = e.detail.value;
  171. },
  172. bindHandleSearch: function () {
  173. if (common.isEmpty(this.seach_value)) {
  174. common.simpleToast(this,this.$t('请输入搜索的内容'));
  175. return;
  176. }
  177. common.loading(this);
  178. this.order_sn = '';
  179. this.battery_sn = '';
  180. this.phone = '';
  181. if (this.selectedTypeIndex == 0) {
  182. this.order_sn = this.seach_value;
  183. } else if (this.selectedTypeIndex == 1) {
  184. this.battery_sn = this.seach_value;
  185. } else if (this.selectedTypeIndex == 2) {
  186. this.phone = this.seach_value;
  187. }
  188. this.refreshOrderList();
  189. },
  190. refreshOrderList() {
  191. this.setData({
  192. start_page: 1,
  193. orderList: []
  194. });
  195. this.loadOrderList();
  196. },
  197. loadOrderList: function () {
  198. const pData = {
  199. page: this.start_page,
  200. limit: this.limit_page,
  201. order_status: 3,
  202. order_sn: this.order_sn,
  203. battery_sn: this.battery_sn,
  204. phone: this.phone
  205. };
  206. const that = this;
  207. common.loading(this);
  208. http.postApi(config.API_ORDER_CHILDREN_LIST, pData, function (resp) {
  209. uni.hideLoading();
  210. uni.stopPullDownRefresh();
  211. if (resp.data.code === 200) {
  212. let orderList = that.orderList;
  213. orderList.push.apply(orderList, resp.data.data.list);
  214. that.setData({
  215. orderList: orderList,
  216. isLoading: false
  217. });
  218. } else {
  219. common.simpleToast(that,resp.data.msg);
  220. }
  221. });
  222. },
  223. bindCheckPay: function (e) {
  224. const idx = e.currentTarget.dataset.idx;
  225. const order_sn = e.currentTarget.dataset.ordersn;
  226. const orderInfo = this.orderList[idx];
  227. if (!orderInfo) {
  228. common.simpleToast(this,this.$t('订单错误'));
  229. return;
  230. }
  231. if (orderInfo.pay_type != 1 || orderInfo.status != 0) {
  232. common.simpleToast(this,this.$t('该订单不是线下支付订单'));
  233. return;
  234. }
  235. const that = this;
  236. uni.showModal({
  237. title: this.$t('提示'),
  238. content: this.$t('请确定该用户已线下支付'),
  239. showCancel: true,
  240. cancelText: this.$t('取消'),
  241. cancelColor: '',
  242. confirmText: this.$t('确定'),
  243. confirmColor: '',
  244. success: function (res) {
  245. if (res.confirm) {
  246. const pData = {
  247. order_sn: order_sn,
  248. idx: idx
  249. };
  250. http.postApi(config.API_ORDER_PAY_SUCCESS, pData, function (resp) {
  251. if (resp.data.code === 200) {
  252. that.refreshOrderList();
  253. } else {
  254. common.simpleToast(that,resp.data.msg);
  255. }
  256. });
  257. }
  258. },
  259. fail: function (res) {},
  260. complete: function (res) {}
  261. });
  262. },
  263. handleClipboard() {
  264. console.log('占位:函数 handleClipboard 未声明');
  265. }
  266. }
  267. };
  268. </script>
  269. <style>
  270. @import './searchOrder.css';
  271. </style>