historySpend.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615
  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. }else{
  147. this.$common.automaticlogin().then(val => {
  148. this.userInfo=this.$store.state.userInfo;
  149. this.wxOpenData=this.$store.state.wxOpenData;
  150. if(!this.userInfo){
  151. this.authorizShow=true
  152. }else{
  153. this.myOrderCoupon()
  154. this.myPower()
  155. this.showPower()
  156. this.getplateNumber()
  157. }
  158. })
  159. }
  160. },
  161. methods: {
  162. decryptPhoneNumber: function(e) {
  163. console.log(e);
  164. this.code=e.detail.code
  165. this.wxPhoneLogin()
  166. this.authorizShow=false;
  167. },
  168. wxPhoneLogin(){
  169. var that=this;
  170. this.$http('miniApp2/sys/wxPhoneLogin', {
  171. appId:this.ext.appId,
  172. unionId:this.ext.unionId,
  173. code:this.code,
  174. openId:this.wxOpenData.openid
  175. },'POST').then(res => {
  176. var data = res.data;
  177. if(data.loginInfo){
  178. this.userInfo=data.loginInfo.openUser;
  179. this.wxOpenData=data.loginInfo;
  180. this.$store.commit('mutationswxOpenData', data)
  181. this.$store.commit('mutationsuserInfo', this.userInfo)
  182. this.myOrderCoupon()
  183. this.myPower()
  184. this.showPower()
  185. this.getplateNumber()
  186. }
  187. })
  188. },
  189. bindPickerChange: function(e) {
  190. console.log('picker发送选择改变,携带值为', e.detail)
  191. this.index = e.detail.value
  192. this.plateNumber=this.array[this.index]
  193. if(this.index==0){
  194. this.plateNumber=''
  195. }
  196. this.myOrderCoupon()
  197. },
  198. getplateNumber(){
  199. console.log("444")
  200. this.wxOpenData= this.$store.state.wxOpenData;
  201. this.$http('openweiXinCardInfoController/plateNumber-by-customerId', {
  202. customerId:this.wxOpenData.loginInfo.uid
  203. }, 'GET').then(res => {
  204. this.array=res.data.split(',')
  205. this.array.unshift('全部')
  206. })
  207. },
  208. //显示权限
  209. showPower() {
  210. this.$http('openweiXinCardInfoController/getShowSetting', {
  211. }, 'GET').then(res => {
  212. var list = res.data
  213. list.forEach((item, index) => {
  214. if (item.fieldValue == 'ReceiptsMoney') {
  215. this.ReceiptsMoney = item.isChecked
  216. }
  217. })
  218. })
  219. },
  220. //评价权限
  221. myPower() {
  222. this.$http('openMiniEvaluate/getEvaluateSetting', {
  223. }, 'GET').then(res => {
  224. // var list = res.data.Items
  225. this.appraise = res.data
  226. })
  227. },
  228. goAppraiseDetail(item) {
  229. uni.navigateTo({
  230. url: 'myAppraiseDetail?sheetId=' + item.id
  231. })
  232. },
  233. goAppraise(item){
  234. uni.navigateTo({
  235. url: 'appraise?sheetID=' + item.id + '&shopID=' + item.shopID
  236. })
  237. },
  238. goDetail(item) {
  239. uni.navigateTo({
  240. url: 'historyDetail?id=' + item.id + '&lastDay=' + item.lastDay
  241. })
  242. },
  243. goDetail2(item){
  244. uni.navigateTo({
  245. url: '../subPack/oldhistoryDetail?id=' + item.id + '&lastDay=' + item.lastDay
  246. })
  247. },
  248. myOrderCoupon() {
  249. let that = this
  250. uni.showLoading({
  251. title: '加载中'
  252. })
  253. /* this.$http('openweiXinCardInfoController/queryConsumptionList', {
  254. plateNumber:this.plateNumber
  255. // page: this.page,
  256. // limit: 10,
  257. }, 'POST').then(res => {
  258. uni.hideLoading();
  259. // var list = res.data.Items
  260. var list = res.data
  261. if (this.page == 1) {
  262. this.itemData = list
  263. } else {
  264. this.itemData = this.itemData.concat(list)
  265. }
  266. if (list.length < 10) {
  267. this.noMoreShow = true
  268. } else {
  269. this.noMoreShow = false
  270. }
  271. }) */
  272. this.$http('openweiXinCardInfoController/queryConsumptionListV2', {
  273. plateNumber:this.plateNumber
  274. // page: this.page,
  275. // limit: 10,
  276. }, 'POST').then(res => {
  277. uni.hideLoading();
  278. var list = res.data.list
  279. this.oldlist=res.data.oldlist
  280. this.itemData = list
  281. if (list.length < 10) {
  282. this.noMoreShow = true
  283. } else {
  284. this.noMoreShow = false
  285. }
  286. })
  287. },
  288. //时间对比
  289. getDateBeforeNow(stringTime) {
  290. console.log("传参未格式化", stringTime);
  291. stringTime = new Date(stringTime.replace(/-/g, '/'))
  292. // 统一单位换算
  293. var minute = 1000 * 60;
  294. var hour = minute * 60;
  295. var day = hour * 24;
  296. var week = day * 7;
  297. var month = day * 30;
  298. var year = month * 12;
  299. var time1 = new Date().getTime(); //当前的时间戳
  300. console.log("当前时间", time1);
  301. // 对时间进行毫秒单位转换
  302. var time2 = new Date(stringTime).getTime(); //指定时间的时间戳
  303. console.log("传过来的时间", time2);
  304. var time = time1 - time2;
  305. console.log("计算后的时间", time);
  306. var result = null;
  307. // if (time < 0) {
  308. // // alert("传过来的时间的时间不能晚于当前时间!");
  309. // result = stringTime;
  310. // } else if (time / year >= 1) {
  311. // result = parseInt(time / year) + "年前";
  312. // } else if (time / month >= 1) {
  313. // result = parseInt(time / month) + "月前";
  314. // } else if (time / week >= 1) {
  315. // result = parseInt(time / week) + "周前";
  316. // } else if (time / day >= 1) {
  317. // result = parseInt(time / day) + "天前";
  318. // } else if (time / hour >= 1) {
  319. // result = parseInt(time / hour) + "小时前";
  320. // } else if (time / minute >= 1) {
  321. // result = parseInt(time / minute) + "分钟前";
  322. // } else {
  323. // result = "刚刚";
  324. // }
  325. if (time < 0) {
  326. // alert("传过来的时间的时间不能晚于当前时间!");
  327. result = -1;
  328. } else if (time / day >= 0) {
  329. result = parseInt(time / day);//多少天前
  330. }
  331. console.log("多少天前", result);
  332. return result;
  333. },
  334. },
  335. // 下拉刷新
  336. onPullDownRefresh() {
  337. this.page = 1
  338. this.myOrderCoupon()
  339. setTimeout(function() {
  340. uni.stopPullDownRefresh();
  341. }, 1000);
  342. },
  343. // 上拉加载更多
  344. onReachBottom() {
  345. // this.page++;
  346. this.myOrderCoupon()
  347. },
  348. }
  349. </script>
  350. <style scoped>
  351. .box {
  352. min-height: 100vh;
  353. background-color: #F4F5F7;
  354. padding-top: 20rpx;
  355. }
  356. .jtImg{
  357. width: 12rpx;height: 20rpx;
  358. margin-top: 10rpx;
  359. }
  360. .screenBox{
  361. background: #FFFFFF;
  362. margin-bottom: 20rpx;
  363. position: fixed;
  364. width: 100vw;
  365. top: 0;left: 0;
  366. }
  367. .screenName{
  368. padding: 24rpx;font-size: 28rpx;
  369. display: flex;
  370. justify-content: space-between;
  371. }
  372. .itemHistory {
  373. margin: 0rpx 24rpx 20rpx;
  374. padding: 20rpx;
  375. background-color: #FFFFFF;
  376. border-radius: 10rpx;
  377. }
  378. .topBox{
  379. display: flex;
  380. justify-content: space-between;
  381. align-items: center;
  382. }
  383. .dan {
  384. font-size: 24rpx;
  385. color: #999999;
  386. }
  387. .stateBox{
  388. display: flex;
  389. }
  390. .danState{
  391. font-size: 24rpx;
  392. color: #FF4F00;
  393. }
  394. .danState2{
  395. font-size: 24rpx;
  396. color: #999999;
  397. }
  398. .time {
  399. font-size: 24rpx;
  400. color: #999999;
  401. }
  402. .carPlate {
  403. margin: 20rpx 0rpx 15rpx;
  404. display: flex;
  405. align-items: center;
  406. justify-content: space-between;
  407. }
  408. .plateBox {
  409. display: flex;
  410. }
  411. .plate {
  412. font-size: 30rpx;
  413. color: #3C3C3C;
  414. font-weight: bold;
  415. margin-right: 20rpx;
  416. }
  417. .mileage {
  418. font-size: 24rpx;
  419. color: #F19D01;
  420. padding: 0rpx 10rpx;
  421. border: 1px solid #F19D01;
  422. border-radius: 4rpx;
  423. height: 33rpx;
  424. }
  425. .price{
  426. font-size: 32rpx;
  427. font-weight: 500;
  428. color: #FF0000;
  429. }
  430. .itemN {
  431. margin-top: 15rpx;
  432. display: flex;
  433. /* 隐藏文字显示 ...不换行 */
  434. overflow: hidden;
  435. text-overflow: ellipsis;
  436. white-space: nowrap;
  437. }
  438. .shopName{
  439. color: #666666;
  440. font-size: 24rpx;
  441. margin-top: 15rpx;
  442. /* 隐藏文字显示 ...不换行 */
  443. overflow: hidden;
  444. text-overflow: ellipsis;
  445. white-space: nowrap;
  446. }
  447. .itemContent {
  448. color: #666666;
  449. font-size: 24rpx;
  450. }
  451. .bottom{
  452. padding-top: 20rpx;
  453. border-top: 1rpx solid #EEEEEE;
  454. margin-top: 20rpx;
  455. display: flex;
  456. justify-content: flex-end;
  457. font-size: 28rpx;
  458. margin-left: -24rpx;
  459. margin-right: -24rpx;
  460. }
  461. .ping{
  462. text-align: center;
  463. color: #FF4F00;
  464. width: 150rpx;
  465. height: 56rpx;
  466. line-height: 56rpx;
  467. border-radius: 36rpx;
  468. border: 2rpx solid #FF4F00;
  469. margin-right: 24rpx;
  470. }
  471. .kan{
  472. text-align: center;
  473. color: #3C3C3C;
  474. width: 150rpx;
  475. height: 56rpx;
  476. line-height: 56rpx;
  477. border-radius: 36rpx;
  478. border: 2rpx solid #DDDDDD;
  479. margin-right: 24rpx;
  480. }
  481. .noMore {
  482. text-align: center;
  483. line-height: 50rpx;
  484. color: #999999;
  485. font-size: 28rpx;
  486. }
  487. .authorizBox{
  488. width: 100vw;
  489. height: 100vh;
  490. background: rgba(0, 0, 0, 0.5);
  491. position: fixed;
  492. top: 0;
  493. left: 0;
  494. }
  495. .authorizCont{
  496. margin-top: 30vh;
  497. width: 564rpx;
  498. height: 408rpx;
  499. background: #FFFFFF;
  500. border-radius: 24rpx;
  501. margin-left: 93rpx;
  502. position: relative;
  503. }
  504. .authorizCloseImg{
  505. width: 62rpx;
  506. height: 62rpx;
  507. }
  508. .sqLogoBox{
  509. width: 180rpx;
  510. height: 180rpx;
  511. background: #FFFFFF;
  512. border-radius: 90rpx;
  513. text-align: center;
  514. position: absolute;
  515. top: -50rpx;
  516. left: 192rpx;
  517. }
  518. .authorizName{
  519. color: #333333;
  520. line-height: 42rpx;
  521. font-size: 30rpx;
  522. text-align: center;
  523. padding-top: 58rpx;
  524. }
  525. .authorizMs{
  526. color: #999999;
  527. line-height: 36rpx;
  528. font-size: 26rpx;
  529. width: 452rpx;
  530. padding-top: 24rpx;
  531. text-align: center;
  532. margin-left: 56rpx;
  533. }
  534. .authorizContbutton{
  535. width: 422rpx;
  536. height: 88rpx;
  537. background: #D53533;
  538. border-radius: 44rpx;
  539. line-height: 88rpx;
  540. text-align: center;
  541. font-size:30rpx;
  542. color: #FFFFFF;
  543. margin-top: 62rpx;
  544. margin-left:71rpx;
  545. }
  546. </style>