paymentDetail.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. <template>
  2. <!-- pages/paymentDetail/paymentDetail.wxml -->
  3. <view class="container">
  4. <view :style="'height: ' + (is_main ? '140rpx' : '80rpx') + ';'"></view>
  5. <view v-if="selectStatus" class="list-group">
  6. <view v-for="(item, index) in recordList" :key="index">
  7. <view class="info-group list-item">
  8. <view class="top-group">
  9. <view class="group-view flex-row">
  10. <view class="flex-row">
  11. <view class="info-text">订单号:</view>
  12. <view class="info-text-gray">{{ item.order_sn }}</view>
  13. </view>
  14. </view>
  15. <view v-if="type != 'group'" class="group-view flex-row">
  16. <view class="flex-row">
  17. <view class="info-text">用户:</view>
  18. <view class="info-text-gray">{{ item.nickname }}/{{ item.phone }}</view>
  19. </view>
  20. </view>
  21. <view class="group-view flex-row flex-between">
  22. <view class="flex-row">
  23. <view class="info-text">充值金额:</view>
  24. <view class="red-text">¥{{ item.money / 100 }}</view>
  25. </view>
  26. <view class="flex-row">
  27. <view class="info-text">到账币数:</view>
  28. <view class="red-text">{{ item.coin / 100 }}币</view>
  29. </view>
  30. </view>
  31. <view class="group-view flex-row flex-between">
  32. <view class="flex-row">
  33. <view class="info-text">支付状态:</view>
  34. <view class="info-text-gray">{{ item.status == 0 ? '未支付' : '已支付' }}</view>
  35. </view>
  36. <view class="flex-row">
  37. <view class="info-text-gray">{{ tools.formatTime(item.ctime) }}</view>
  38. </view>
  39. </view>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. <view v-if="!selectStatus" class="list-group">
  45. <view v-for="(item, index) in walletList" :key="index">
  46. <view class="info-group list-item">
  47. <view class="top-group">
  48. <view class="group-view flex-row">
  49. <view class="flex-row">
  50. <view class="info-text">设备号/用户:</view>
  51. <view v-if="item.type == '1'" class="info-text-gray">
  52. {{ userInfo.info.name }}
  53. </view>
  54. <view v-if="item.type == '2'" class="info-text-gray">
  55. {{ '设备号:' + item.target_id }}
  56. </view>
  57. <view v-if="item.type == '3'" class="info-text-gray">
  58. {{ item.nickname + '/' + item.phone }}
  59. </view>
  60. <view v-if="item.type == '4' && type != 'group'" class="info-text-gray">
  61. {{ item.nickname + '/' + item.phone }}
  62. </view>
  63. <view v-if="item.type == '4' && type == 'group'" class="info-text-gray">
  64. {{ userInfo.info.name }}
  65. </view>
  66. </view>
  67. </view>
  68. <view class="group-view flex-row flex-between">
  69. <view class="flex-row">
  70. <view class="info-text">余额:</view>
  71. <view class="red-text">{{ item.after_coin / 100 }}币</view>
  72. </view>
  73. <view class="flex-row">
  74. <view class="info-text">金币流水:</view>
  75. <view v-if="item.after_coin - item.before_coin >= 0" class="red-text">{{ '+' + (item.after_coin - item.before_coin) / 100 }}币</view>
  76. <view v-if="item.after_coin - item.before_coin < 0" class="green-text">{{ (item.after_coin - item.before_coin) / 100 }}币</view>
  77. </view>
  78. </view>
  79. <view class="group-view flex-row flex-between">
  80. <view class="flex-row">
  81. <view class="info-text">摘要:</view>
  82. <view class="info-text-gray">{{ item.remark }}</view>
  83. </view>
  84. </view>
  85. <view class="group-view flex-row flex-between">
  86. <view class="flex-row">
  87. <view class="info-text">时间:</view>
  88. <view class="info-text-gray">{{ tools.formatTime(item.ctime) }}</view>
  89. </view>
  90. </view>
  91. </view>
  92. </view>
  93. </view>
  94. </view>
  95. <view class="no-more">没有更多信息</view>
  96. <view :style="'height: ' + (is_main ? '140rpx' : '80rpx') + ';'"></view>
  97. <view class="top-bar-container">
  98. <view class="flex-row flex-between">
  99. <view @tap="clickSelectType" data-index="1" :class="'tab_nav ' + (selectStatus == 1 ? 'select_color' : '')">充值记录</view>
  100. <view @tap="clickSelectType" data-index="2" :class="'tab_nav ' + (selectStatus == 0 ? 'select_color' : '')">钱包流水</view>
  101. </view>
  102. <view v-if="is_main" style="margin-left: 20rpx; margin-top: 10rpx" :class="'flex-row ' + (selectStatus != 1 ? 'select_color' : '')">
  103. <view @tap="clickSelectUserInfoType" data-index="1" :class="'sub_nav ' + (isShop == 1 ? 'sub_nav_select' : 'sub_nav_select_no')">商家</view>
  104. <view @tap="clickSelectUserInfoType" data-index="2" :class="'sub_nav ' + (isShop == 1 ? 'sub_nav_select_no' : 'sub_nav_select')">用户</view>
  105. </view>
  106. </view>
  107. </view>
  108. </template>
  109. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  110. <script>
  111. // pages/paymentDetail/paymentDetail.js
  112. var appConfig = require('../../common/appConfig.js');
  113. const config = require('../../common/config.js');
  114. const http = require('../../common/http.js');
  115. const common = require('../../common/common.js');
  116. var storage = require('../../common/storage.js');
  117. const LIMT_PAGE = 20;
  118. export default {
  119. data() {
  120. return {
  121. isLoading: false,
  122. recordList: [],
  123. walletList: [],
  124. start_page: 1,
  125. limit_page: LIMT_PAGE,
  126. selectStatus: 1,
  127. isShop: 1,
  128. userInfo: {
  129. info: {
  130. name: ''
  131. }
  132. },
  133. is_main: true,
  134. type: 'group',
  135. coin: ''
  136. };
  137. }
  138. /**
  139. * 生命周期函数--监听页面加载
  140. */,
  141. onLoad: function (options) {
  142. const userInfo = storage.getUserInfo();
  143. this.setData({
  144. userInfo: userInfo
  145. });
  146. this.loadGetCoin();
  147. this.refreshLoadSmsAlarmList();
  148. },
  149. /**
  150. * 生命周期函数--监听页面显示
  151. */
  152. onShow: function () {},
  153. /**
  154. * 页面相关事件处理函数--监听用户下拉动作
  155. */
  156. onPullDownRefresh: function () {
  157. this.refreshLoadSmsAlarmList();
  158. },
  159. /**
  160. * 页面上拉触底事件的处理函数
  161. */
  162. onReachBottom: function () {
  163. if (this.isLoading) {
  164. return;
  165. }
  166. this.setData({
  167. isLoading: true
  168. });
  169. this.start_page++;
  170. this.loadListData();
  171. },
  172. methods: {
  173. refreshLoadSmsAlarmList: function () {
  174. if (this.isLoading) {
  175. return;
  176. }
  177. this.setData({
  178. recordList: [],
  179. walletList: [],
  180. isLoading: true
  181. });
  182. common.loading();
  183. this.limit_page = LIMT_PAGE;
  184. this.start_page = 1;
  185. this.loadListData();
  186. },
  187. clickSelectType: function (e) {
  188. const index = e.currentTarget.dataset.index;
  189. this.setData({
  190. selectStatus: index === '1' ? 1 : 0
  191. });
  192. this.refreshLoadSmsAlarmList();
  193. },
  194. clickSelectUserInfoType: function (e) {
  195. const index = e.currentTarget.dataset.index;
  196. this.setData({
  197. isShop: index === '1' ? 1 : 0,
  198. type: index === '1' ? 'group' : 'user'
  199. });
  200. this.refreshLoadSmsAlarmList();
  201. },
  202. loadListData() {
  203. if (this.selectStatus === 1) {
  204. this.loadApiGetCoinRecordList();
  205. } else {
  206. this.loadApiGetCoinHisttoryList();
  207. }
  208. },
  209. loadApiGetCoinRecordList() {
  210. const pData = {
  211. size: this.limit_page,
  212. page: this.start_page,
  213. type: this.type === 'group' ? '2' : '1'
  214. };
  215. const me = this;
  216. http.postApi(config.API_GET_COIN_ORDER, pData, function (resp) {
  217. uni.hideLoading();
  218. uni.stopPullDownRefresh();
  219. if (resp.data.code === 200) {
  220. let recordList = me.recordList;
  221. var topUp_recordList = resp.data.data.list;
  222. recordList.push.apply(recordList, topUp_recordList);
  223. me.setData({
  224. recordList: recordList,
  225. isLoading: false
  226. });
  227. }
  228. });
  229. },
  230. loadApiGetCoinHisttoryList() {
  231. const pData = {
  232. size: this.limit_page,
  233. page: this.start_page,
  234. type: this.type === 'group' ? '2' : '1'
  235. };
  236. const me = this;
  237. http.postApi(config.API_GET_COIN_HISTORY, pData, function (resp) {
  238. uni.hideLoading();
  239. uni.stopPullDownRefresh();
  240. if (resp.data.code === 200) {
  241. let walletList = me.walletList;
  242. var wallet_list = resp.data.data.list;
  243. walletList.push.apply(walletList, wallet_list);
  244. me.setData({
  245. walletList: walletList,
  246. isLoading: false
  247. });
  248. }
  249. });
  250. },
  251. // loadWarnList() {
  252. // const me = this
  253. // common.loading()
  254. // const pData = {
  255. // size: me.data.limit_page,
  256. // page: me.data.start_page
  257. // }
  258. // http.postRequest(config.API_ALARM_SUMMARY, pData, function(resp) {
  259. // wx.hideLoading()
  260. // wx.stopPullDownRefresh()
  261. // if(resp.data.code === 200) {
  262. // let alarmList = me.data.alarmList
  263. // var alarm_list = resp.data.data.list
  264. // for(var i=0;alarm_list.length > i;i++){
  265. // var import_alarm_list = alarm_list[i].alarm_setting[0].list
  266. // var warn_alarm_list = alarm_list[i].alarm_setting[1].list
  267. // var importAlarmList = []
  268. // var warnAlarmList = []
  269. // for(var j=0;import_alarm_list.length >j;j++){
  270. // importAlarmList.push(import_alarm_list[j].alarmName)
  271. // }
  272. // for(var m=0;warn_alarm_list.length >m;m++){
  273. // warnAlarmList.push(warn_alarm_list[m].alarmName)
  274. // }
  275. // alarm_list[i].importAlarm = importAlarmList.toString()
  276. // alarm_list[i].warnAlarm = warnAlarmList.toString()
  277. // }
  278. // console.log(alarm_list)
  279. // alarmList.push.apply(alarmList, alarm_list)
  280. // me.setData({
  281. // alarmList: alarmList,
  282. // alarmStatus:resp.data.data.close_alarm,
  283. // coin:resp.data.data.coin,
  284. // isLoading: false
  285. // })
  286. // } else {
  287. // common.simpleToast(resp.data.msg)
  288. // }
  289. // })
  290. // }
  291. loadGetCoin() {
  292. const me = this;
  293. http.postApi(config.API_GET_COIN, {}, function (resp) {
  294. if (resp.data.code === 200) {
  295. me.setData({
  296. coin: resp.data.data.coin,
  297. is_main: resp.data.data.is_main
  298. });
  299. }
  300. });
  301. }
  302. }
  303. };
  304. </script>
  305. <style>
  306. @import './paymentDetail.css';
  307. </style>