historySpend.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618
  1. <template>
  2. <view class="box">
  3. <homenav :iStatusBarHeight="iStatusBarHeight" :title="'历史消费'" ></homenav>
  4. <view class="screenBox">
  5. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  6. <view style="height: 44px;"></view>
  7. <picker @change="bindPickerChange" :value="index" :range="array">
  8. <view class="screenName"> <span>车牌号:{{array[index]}}</span>
  9. <image src="../../static/timg/icon_arrow_right.png" mode="" class="jtImg"></image>
  10. </view>
  11. </picker>
  12. </view>
  13. <view style="height: 90rpx;"></view>
  14. <view class="itemHistory" v-for="(item,index) in itemData" :key="index" @click="goDetail(item)">
  15. <view class="topBox">
  16. <view class="dan">{{item.code}}</view>
  17. <!-- SheetType单据类型(1维修单 2销售单3洗车单4销售退货) -->
  18. <view class="stateBox" v-if="item.SheetType == 1">
  19. <!-- 0待施工(已保存)1施工中(已派工)2已完工 3已质检 4 已作废 -->
  20. <view class="danState" :class="{danState2:item.PayState == 2}" v-if="item.SheetState == 0">待施工</view>
  21. <view class="danState" :class="{danState2:item.PayState == 2}" v-if="item.SheetState == 1">施工中</view>
  22. <view class="danState" :class="{danState2:item.PayState == 2}" v-if="item.SheetState == 2">已完工</view>
  23. <view class="danState" :class="{danState2:item.PayState == 2}" v-if="item.SheetState == 3">已质检</view>
  24. <view class="danState" :class="{danState2:item.PayState == 2}" v-if="item.SheetState == 4">已作废</view>
  25. <!-- 结算状态 -->
  26. <view class="danState" v-if="item.PayState == 0">/未结算</view>
  27. <view class="danState2" v-if="item.PayState == 2">/已结算</view>
  28. </view>
  29. <view class="stateBox" v-if="item.SheetType == 2">
  30. <!-- 0待施工(已保存)1施工中(已派工)2已审核 3已质检 4 已作废 -->
  31. <view class="danState" :class="{danState2:item.PayState == 2}" v-if="item.SheetState < 2 ">未审核</view>
  32. <view class="danState" :class="{danState2:item.PayState == 2}" v-if="item.SheetState == 2">已审核</view>
  33. <view class="danState" :class="{danState2:item.PayState == 2}" v-if="item.SheetState == 4">已作废</view>
  34. <!-- 结算状态 -->
  35. <view class="danState" v-if="item.PayState == 0">/未结算</view>
  36. <view class="danState2" v-if="item.PayState == 2">/已结算</view>
  37. </view>
  38. <view class="stateBox" v-if="item.SheetType == 3">
  39. <!-- 0待施工(已保存)1施工中(已派工)2已完工 3已质检 4 已作废 -->
  40. <view class="danState" :class="{danState2:item.PayState == 2}" v-if="item.SheetState == 0">已保存</view>
  41. <view class="danState" :class="{danState2:item.PayState == 2}" v-if="item.SheetState == 4">已作废</view>
  42. <!-- 结算状态 -->
  43. <view class="danState" v-if="item.PayState == 0">/未结算</view>
  44. <view class="danState2" v-if="item.PayState == 2">/已结算</view>
  45. </view>
  46. </view>
  47. <view class="carPlate">
  48. <view class="plateBox">
  49. <view class="plate">{{item.PlateNumber}}</view>
  50. <view class="mileage" v-if="item.CurrentMileage>0">{{item.CurrentMileage}}km</view>
  51. </view>
  52. <view v-if="ReceiptsMoney" class="price"><span style="font-size: 22rpx;">¥</span>{{item.money?item.money:0}}</view>
  53. </view>
  54. <view class="time">{{item.time}}</view>
  55. <view class="shopName">{{item.ShopName}}</view>
  56. <!-- <view class="itemN" v-if="item.listItems.length != 0">
  57. <view class="itemContent" v-if="item.listItems.length != 0" v-for="(v,i) in item.listItems">{{v.ItemName}},</view>
  58. </view>
  59. <view class="itemN" v-if="item.listParts.length != 0">
  60. <view class="itemContent" v-if="item.listParts.length != 0" v-for="(v,i) in item.listParts">{{v.GoodsName}},</view>
  61. </view> -->
  62. <view class="itemN" v-if="item.ItemName">
  63. <view class="itemContent" >{{item.ItemName}}</view>
  64. </view>
  65. <view class="itemN" v-if="item.GoodsName">
  66. <view class="itemContent" >{{item.GoodsName}}</view>
  67. </view>
  68. <view v-if="((item.PayState == 2) && (appraise == true) && ((item.lastDay <= 30 && item.EvaluateState == 0) || item.EvaluateState == 1))" class="bottom">
  69. <view v-if="(item.EvaluateState == 0) && (item.lastDay <= 30) && appraise == true && item.PayState == 2" @click.stop="goAppraise(item)" class="ping">评价</view>
  70. <view v-if="item.EvaluateState == 1" @click.stop="goAppraiseDetail(item)" class="kan">查看评价</view>
  71. </view>
  72. </view>
  73. <view class="itemHistory" v-for="(item,index) in oldlist" :key="index" @click="goDetail2(item)">
  74. <view class="topBox">
  75. <view class="dan">{{item.Code}}</view>
  76. <!-- SheetType单据类型(1维修单 2销售单3洗车单4销售退货) -->
  77. <view class="stateBox" >
  78. <view class="danState2">{{item.CheckoutState?item.CheckoutState:''}}</view>
  79. </view>
  80. </view>
  81. <view class="carPlate">
  82. <view class="plateBox">
  83. <view class="plate">{{item.PlateNumber}}</view>
  84. <view class="mileage" v-if="item.CurrentMileage>0">{{item.CurrentMileage}}km</view>
  85. </view>
  86. <view v-if="ReceiptsMoney&&item.CheckoutMoney" class="price"><span style="font-size: 22rpx;">¥</span>{{item.CheckoutMoney}}</view>
  87. </view>
  88. <view class="time">{{item.time}}</view>
  89. <view class="shopName">{{item.ShopName}}</view>
  90. <view class="itemN" v-if="item.ItemName">
  91. <view class="itemContent" >{{item.ItemName}}</view>
  92. </view>
  93. <view class="itemN" v-if="item.GoodsName">
  94. <view class="itemContent" >{{item.GoodsName}}</view>
  95. </view>
  96. </view>
  97. <!-- 上拉 加载更多 -->
  98. <view class="noMore" v-if="noMoreShow && (itemData.length!=0)">没有更多数据</view>
  99. <!-- 无数据空白页 -->
  100. <nodata v-if="itemData.length==0&&oldlist.length==0"></nodata>
  101. <!-- 手机号授权 -->
  102. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  103. <view class="authorizCont" @click.stop="">
  104. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  105. <view class="authorizMs">您好,欢迎访问本店,授权手机号登录能获取我们最新的促销活动哦~</view>
  106. <button class="authorizContbutton" type="default" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">授权</button>
  107. </view>
  108. <view style="text-align: center;padding-top: 56rpx;">
  109. <image src="../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  110. </view>
  111. </view>
  112. </view>
  113. </template>
  114. <script>
  115. import nodata from '../../components/nodata/nodata.vue'
  116. import homenav from "../../components/homenav/nav.vue"
  117. export default {
  118. components: {
  119. nodata,homenav
  120. },
  121. data() {
  122. return {
  123. page: 1,
  124. itemData: [],
  125. oldlist:[],
  126. noMoreShow: false,
  127. appraise:false,
  128. ReceiptsMoney:false,//支付金额
  129. iStatusBarHeight:'',
  130. array: [],
  131. index: 0,
  132. wxOpenData: '',
  133. plateNumber:'',
  134. ext:'',
  135. authorizShow:false,
  136. userInfo: '',
  137. code:'',
  138. }
  139. },
  140. onLoad() {
  141. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  142. this.page = 1
  143. this.userInfo=this.$store.state.userInfo;
  144. this.ext=this.$common.getExtStoreId();
  145. if(this.userInfo){
  146. this.myOrderCoupon()
  147. this.myPower()
  148. this.showPower()
  149. this.getplateNumber()
  150. }else{
  151. this.$common.automaticlogin().then(val => {
  152. this.userInfo=this.$store.state.userInfo;
  153. this.wxOpenData=this.$store.state.wxOpenData;
  154. if(!this.userInfo){
  155. this.authorizShow=true
  156. }else{
  157. this.myOrderCoupon()
  158. this.myPower()
  159. this.showPower()
  160. this.getplateNumber()
  161. }
  162. })
  163. }
  164. },
  165. methods: {
  166. decryptPhoneNumber: function(e) {
  167. console.log(e);
  168. this.code=e.detail.code
  169. this.wxPhoneLogin()
  170. this.authorizShow=false;
  171. },
  172. wxPhoneLogin(){
  173. var that=this;
  174. this.$http('miniApp2/sys/wxPhoneLogin', {
  175. appId:this.ext.appId,
  176. unionId:this.ext.unionId,
  177. code:this.code,
  178. openId:this.wxOpenData.openid
  179. },'POST').then(res => {
  180. var data = res.data;
  181. if(data.loginInfo){
  182. this.userInfo=data.loginInfo.openUser;
  183. this.wxOpenData=data.loginInfo;
  184. this.$store.commit('mutationswxOpenData', data)
  185. this.$store.commit('mutationsuserInfo', this.userInfo)
  186. this.myOrderCoupon()
  187. this.myPower()
  188. this.showPower()
  189. this.getplateNumber()
  190. }
  191. })
  192. },
  193. bindPickerChange: function(e) {
  194. console.log('picker发送选择改变,携带值为', e.detail)
  195. this.index = e.detail.value
  196. this.plateNumber=this.array[this.index]
  197. if(this.index==0){
  198. this.plateNumber=''
  199. }
  200. this.myOrderCoupon()
  201. },
  202. getplateNumber(){
  203. console.log("444")
  204. this.wxOpenData= this.$store.state.wxOpenData;
  205. this.$http('openweiXinCardInfoController/plateNumber-by-customerId', {
  206. customerId:this.wxOpenData.loginInfo.uid
  207. }, 'GET').then(res => {
  208. this.array=res.data.split(',')
  209. this.array.unshift('全部')
  210. })
  211. },
  212. //显示权限
  213. showPower() {
  214. this.$http('openweiXinCardInfoController/getShowSetting', {
  215. }, 'GET').then(res => {
  216. var list = res.data
  217. list.forEach((item, index) => {
  218. if (item.fieldValue == 'ReceiptsMoney') {
  219. this.ReceiptsMoney = item.isChecked
  220. }
  221. })
  222. })
  223. },
  224. //评价权限
  225. myPower() {
  226. this.$http('openMiniEvaluate/getEvaluateSetting', {
  227. }, 'GET').then(res => {
  228. // var list = res.data.Items
  229. this.appraise = res.data
  230. })
  231. },
  232. goAppraiseDetail(item) {
  233. uni.navigateTo({
  234. url: 'myAppraiseDetail?sheetId=' + item.id
  235. })
  236. },
  237. goAppraise(item){
  238. uni.navigateTo({
  239. url: 'appraise?sheetID=' + item.id + '&shopID=' + item.shopID
  240. })
  241. },
  242. goDetail(item) {
  243. uni.navigateTo({
  244. url: 'historyDetail?id=' + item.id + '&lastDay=' + item.lastDay
  245. })
  246. },
  247. goDetail2(item){
  248. uni.navigateTo({
  249. url: '../subPack/oldhistoryDetail?id=' + item.id + '&lastDay=' + item.lastDay
  250. })
  251. },
  252. myOrderCoupon() {
  253. let that = this
  254. uni.showLoading({
  255. title: '加载中'
  256. })
  257. /* this.$http('openweiXinCardInfoController/queryConsumptionList', {
  258. plateNumber:this.plateNumber
  259. // page: this.page,
  260. // limit: 10,
  261. }, 'POST').then(res => {
  262. uni.hideLoading();
  263. // var list = res.data.Items
  264. var list = res.data
  265. if (this.page == 1) {
  266. this.itemData = list
  267. } else {
  268. this.itemData = this.itemData.concat(list)
  269. }
  270. if (list.length < 10) {
  271. this.noMoreShow = true
  272. } else {
  273. this.noMoreShow = false
  274. }
  275. }) */
  276. this.$http('openweiXinCardInfoController/queryConsumptionListV2', {
  277. plateNumber:this.plateNumber
  278. // page: this.page,
  279. // limit: 10,
  280. }, 'POST').then(res => {
  281. uni.hideLoading();
  282. var list = res.data.list
  283. this.oldlist=res.data.oldlist
  284. this.itemData = list
  285. if (list.length < 10) {
  286. this.noMoreShow = true
  287. } else {
  288. this.noMoreShow = false
  289. }
  290. })
  291. },
  292. //时间对比
  293. getDateBeforeNow(stringTime) {
  294. console.log("传参未格式化", stringTime);
  295. stringTime = new Date(stringTime.replace(/-/g, '/'))
  296. // 统一单位换算
  297. var minute = 1000 * 60;
  298. var hour = minute * 60;
  299. var day = hour * 24;
  300. var week = day * 7;
  301. var month = day * 30;
  302. var year = month * 12;
  303. var time1 = new Date().getTime(); //当前的时间戳
  304. console.log("当前时间", time1);
  305. // 对时间进行毫秒单位转换
  306. var time2 = new Date(stringTime).getTime(); //指定时间的时间戳
  307. console.log("传过来的时间", time2);
  308. var time = time1 - time2;
  309. console.log("计算后的时间", time);
  310. var result = null;
  311. // if (time < 0) {
  312. // // alert("传过来的时间的时间不能晚于当前时间!");
  313. // result = stringTime;
  314. // } else if (time / year >= 1) {
  315. // result = parseInt(time / year) + "年前";
  316. // } else if (time / month >= 1) {
  317. // result = parseInt(time / month) + "月前";
  318. // } else if (time / week >= 1) {
  319. // result = parseInt(time / week) + "周前";
  320. // } else if (time / day >= 1) {
  321. // result = parseInt(time / day) + "天前";
  322. // } else if (time / hour >= 1) {
  323. // result = parseInt(time / hour) + "小时前";
  324. // } else if (time / minute >= 1) {
  325. // result = parseInt(time / minute) + "分钟前";
  326. // } else {
  327. // result = "刚刚";
  328. // }
  329. if (time < 0) {
  330. // alert("传过来的时间的时间不能晚于当前时间!");
  331. result = -1;
  332. } else if (time / day >= 0) {
  333. result = parseInt(time / day);//多少天前
  334. }
  335. console.log("多少天前", result);
  336. return result;
  337. },
  338. },
  339. // 下拉刷新
  340. onPullDownRefresh() {
  341. this.page = 1
  342. this.myOrderCoupon()
  343. setTimeout(function() {
  344. uni.stopPullDownRefresh();
  345. }, 1000);
  346. },
  347. // 上拉加载更多
  348. onReachBottom() {
  349. // this.page++;
  350. this.myOrderCoupon()
  351. },
  352. }
  353. </script>
  354. <style scoped>
  355. .box {
  356. min-height: 100vh;
  357. background-color: #F4F5F7;
  358. padding-top: 20rpx;
  359. }
  360. .jtImg{
  361. width: 12rpx;height: 20rpx;
  362. margin-top: 10rpx;
  363. }
  364. .screenBox{
  365. background: #FFFFFF;
  366. margin-bottom: 20rpx;
  367. position: fixed;
  368. width: 100vw;
  369. top: 0;left: 0;
  370. }
  371. .screenName{
  372. padding: 24rpx;font-size: 28rpx;
  373. display: flex;
  374. justify-content: space-between;
  375. }
  376. .itemHistory {
  377. margin: 0rpx 24rpx 20rpx;
  378. padding: 20rpx;
  379. background-color: #FFFFFF;
  380. border-radius: 10rpx;
  381. }
  382. .topBox{
  383. display: flex;
  384. justify-content: space-between;
  385. align-items: center;
  386. }
  387. .dan {
  388. font-size: 24rpx;
  389. color: #999999;
  390. }
  391. .stateBox{
  392. display: flex;
  393. }
  394. .danState{
  395. font-size: 24rpx;
  396. color: #FF4F00;
  397. }
  398. .danState2{
  399. font-size: 24rpx;
  400. color: #999999;
  401. }
  402. .time {
  403. font-size: 24rpx;
  404. color: #999999;
  405. }
  406. .carPlate {
  407. margin: 20rpx 0rpx 15rpx;
  408. display: flex;
  409. align-items: center;
  410. justify-content: space-between;
  411. }
  412. .plateBox {
  413. display: flex;
  414. }
  415. .plate {
  416. font-size: 30rpx;
  417. color: #3C3C3C;
  418. font-weight: bold;
  419. margin-right: 20rpx;
  420. }
  421. .mileage {
  422. font-size: 24rpx;
  423. color: #F19D01;
  424. padding: 0rpx 10rpx;
  425. border: 1px solid #F19D01;
  426. border-radius: 4rpx;
  427. height: 33rpx;
  428. }
  429. .price{
  430. font-size: 32rpx;
  431. font-weight: 500;
  432. color: #FF0000;
  433. }
  434. .itemN {
  435. margin-top: 15rpx;
  436. display: flex;
  437. /* 隐藏文字显示 ...不换行 */
  438. overflow: hidden;
  439. text-overflow: ellipsis;
  440. white-space: nowrap;
  441. }
  442. .shopName{
  443. color: #666666;
  444. font-size: 24rpx;
  445. margin-top: 15rpx;
  446. /* 隐藏文字显示 ...不换行 */
  447. overflow: hidden;
  448. text-overflow: ellipsis;
  449. white-space: nowrap;
  450. }
  451. .itemContent {
  452. color: #666666;
  453. font-size: 24rpx;
  454. }
  455. .bottom{
  456. padding-top: 20rpx;
  457. border-top: 1rpx solid #EEEEEE;
  458. margin-top: 20rpx;
  459. display: flex;
  460. justify-content: flex-end;
  461. font-size: 28rpx;
  462. margin-left: -24rpx;
  463. margin-right: -24rpx;
  464. }
  465. .ping{
  466. text-align: center;
  467. color: #FF4F00;
  468. width: 150rpx;
  469. height: 56rpx;
  470. line-height: 56rpx;
  471. border-radius: 36rpx;
  472. border: 2rpx solid #FF4F00;
  473. margin-right: 24rpx;
  474. }
  475. .kan{
  476. text-align: center;
  477. color: #3C3C3C;
  478. width: 150rpx;
  479. height: 56rpx;
  480. line-height: 56rpx;
  481. border-radius: 36rpx;
  482. border: 2rpx solid #DDDDDD;
  483. margin-right: 24rpx;
  484. }
  485. .noMore {
  486. text-align: center;
  487. line-height: 50rpx;
  488. color: #999999;
  489. font-size: 28rpx;
  490. }
  491. .authorizBox{
  492. width: 100vw;
  493. height: 100vh;
  494. background: rgba(0, 0, 0, 0.5);
  495. position: fixed;
  496. top: 0;
  497. left: 0;
  498. }
  499. .authorizCont{
  500. margin-top: 30vh;
  501. width: 564rpx;
  502. height: 408rpx;
  503. background: #FFFFFF;
  504. border-radius: 24rpx;
  505. margin-left: 93rpx;
  506. position: relative;
  507. }
  508. .authorizCloseImg{
  509. width: 62rpx;
  510. height: 62rpx;
  511. }
  512. .sqLogoBox{
  513. width: 180rpx;
  514. height: 180rpx;
  515. background: #FFFFFF;
  516. border-radius: 90rpx;
  517. text-align: center;
  518. position: absolute;
  519. top: -50rpx;
  520. left: 192rpx;
  521. }
  522. .authorizName{
  523. color: #333333;
  524. line-height: 42rpx;
  525. font-size: 30rpx;
  526. text-align: center;
  527. padding-top: 58rpx;
  528. }
  529. .authorizMs{
  530. color: #999999;
  531. line-height: 36rpx;
  532. font-size: 26rpx;
  533. width: 452rpx;
  534. padding-top: 24rpx;
  535. text-align: center;
  536. margin-left: 56rpx;
  537. }
  538. .authorizContbutton{
  539. width: 422rpx;
  540. height: 88rpx;
  541. background: #D53533;
  542. border-radius: 44rpx;
  543. line-height: 88rpx;
  544. text-align: center;
  545. font-size:30rpx;
  546. color: #FFFFFF;
  547. margin-top: 62rpx;
  548. margin-left:71rpx;
  549. }
  550. </style>