historySpend.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  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 v-if="((item.PayState == 2) && (appraise == true) && ((item.lastDay <= 30 && item.EvaluateState == 0) || item.EvaluateState == 1))" class="bottom">
  63. <view v-if="(item.EvaluateState == 0) && (item.lastDay <= 30) && appraise == true && item.PayState == 2" @click.stop="goAppraise(item)" class="ping">评价</view>
  64. <view v-if="item.EvaluateState == 1" @click.stop="goAppraiseDetail(item)" class="kan">查看评价</view>
  65. </view>
  66. </view>
  67. <!-- 上拉 加载更多 -->
  68. <view class="noMore" v-if="noMoreShow && (itemData.length!=0)">没有更多数据</view>
  69. <!-- 无数据空白页 -->
  70. <nodata v-if="itemData.length==0"></nodata>
  71. </view>
  72. </template>
  73. <script>
  74. import nodata from '../../components/nodata/nodata.vue'
  75. import homenav from "../../components/homenav/nav.vue"
  76. export default {
  77. components: {
  78. nodata,homenav
  79. },
  80. data() {
  81. return {
  82. page: 1,
  83. itemData: [],
  84. noMoreShow: false,
  85. appraise:false,
  86. ReceiptsMoney:false,//支付金额
  87. iStatusBarHeight:'',
  88. array: [],
  89. index: 0,
  90. wxOpenData: '',
  91. plateNumber:'',
  92. }
  93. },
  94. onLoad() {
  95. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  96. this.page = 1
  97. this.myOrderCoupon()
  98. this.myPower()
  99. this.showPower()
  100. this.getplateNumber()
  101. },
  102. methods: {
  103. bindPickerChange: function(e) {
  104. console.log('picker发送选择改变,携带值为', e.detail)
  105. this.index = e.detail.value
  106. this.plateNumber=this.array[this.index]
  107. if(this.index==0){
  108. this.plateNumber=''
  109. }
  110. this.myOrderCoupon()
  111. },
  112. getplateNumber(){
  113. console.log("444")
  114. this.wxOpenData= this.$store.state.wxOpenData;
  115. this.$http('openweiXinCardInfoController/plateNumber-by-customerId', {
  116. customerId:this.wxOpenData.loginInfo.uid
  117. }, 'GET').then(res => {
  118. this.array=res.data.split(',')
  119. this.array.unshift('全部')
  120. })
  121. },
  122. //显示权限
  123. showPower() {
  124. this.$http('openweiXinCardInfoController/getShowSetting', {
  125. }, 'GET').then(res => {
  126. var list = res.data
  127. list.forEach((item, index) => {
  128. if (item.fieldValue == 'ReceiptsMoney') {
  129. this.ReceiptsMoney = item.isChecked
  130. }
  131. })
  132. })
  133. },
  134. //评价权限
  135. myPower() {
  136. this.$http('openMiniEvaluate/getEvaluateSetting', {
  137. }, 'GET').then(res => {
  138. // var list = res.data.Items
  139. this.appraise = res.data
  140. })
  141. },
  142. goAppraiseDetail(item) {
  143. uni.navigateTo({
  144. url: 'myAppraiseDetail?sheetId=' + item.id
  145. })
  146. },
  147. goAppraise(item){
  148. uni.navigateTo({
  149. url: 'appraise?sheetID=' + item.id + '&shopID=' + item.shopID
  150. })
  151. },
  152. goDetail(item) {
  153. uni.navigateTo({
  154. url: 'historyDetail?id=' + item.id + '&lastDay=' + item.lastDay
  155. })
  156. },
  157. myOrderCoupon() {
  158. let that = this
  159. uni.showLoading({
  160. title: '加载中'
  161. })
  162. this.$http('openweiXinCardInfoController/queryConsumptionList', {
  163. plateNumber:this.plateNumber
  164. // page: this.page,
  165. // limit: 10,
  166. }, 'POST').then(res => {
  167. uni.hideLoading();
  168. // var list = res.data.Items
  169. var list = res.data
  170. if (this.page == 1) {
  171. this.itemData = list
  172. } else {
  173. this.itemData = this.itemData.concat(list)
  174. }
  175. if (list.length < 10) {
  176. this.noMoreShow = true
  177. } else {
  178. this.noMoreShow = false
  179. }
  180. })
  181. },
  182. //时间对比
  183. getDateBeforeNow(stringTime) {
  184. console.log("传参未格式化", stringTime);
  185. stringTime = new Date(stringTime.replace(/-/g, '/'))
  186. // 统一单位换算
  187. var minute = 1000 * 60;
  188. var hour = minute * 60;
  189. var day = hour * 24;
  190. var week = day * 7;
  191. var month = day * 30;
  192. var year = month * 12;
  193. var time1 = new Date().getTime(); //当前的时间戳
  194. console.log("当前时间", time1);
  195. // 对时间进行毫秒单位转换
  196. var time2 = new Date(stringTime).getTime(); //指定时间的时间戳
  197. console.log("传过来的时间", time2);
  198. var time = time1 - time2;
  199. console.log("计算后的时间", time);
  200. var result = null;
  201. // if (time < 0) {
  202. // // alert("传过来的时间的时间不能晚于当前时间!");
  203. // result = stringTime;
  204. // } else if (time / year >= 1) {
  205. // result = parseInt(time / year) + "年前";
  206. // } else if (time / month >= 1) {
  207. // result = parseInt(time / month) + "月前";
  208. // } else if (time / week >= 1) {
  209. // result = parseInt(time / week) + "周前";
  210. // } else if (time / day >= 1) {
  211. // result = parseInt(time / day) + "天前";
  212. // } else if (time / hour >= 1) {
  213. // result = parseInt(time / hour) + "小时前";
  214. // } else if (time / minute >= 1) {
  215. // result = parseInt(time / minute) + "分钟前";
  216. // } else {
  217. // result = "刚刚";
  218. // }
  219. if (time < 0) {
  220. // alert("传过来的时间的时间不能晚于当前时间!");
  221. result = -1;
  222. } else if (time / day >= 0) {
  223. result = parseInt(time / day);//多少天前
  224. }
  225. console.log("多少天前", result);
  226. return result;
  227. },
  228. },
  229. // 下拉刷新
  230. onPullDownRefresh() {
  231. this.page = 1
  232. this.myOrderCoupon()
  233. setTimeout(function() {
  234. uni.stopPullDownRefresh();
  235. }, 1000);
  236. },
  237. // 上拉加载更多
  238. onReachBottom() {
  239. // this.page++;
  240. this.myOrderCoupon()
  241. },
  242. }
  243. </script>
  244. <style>
  245. .box {
  246. min-height: 100vh;
  247. background-color: #F4F5F7;
  248. padding-top: 20rpx;
  249. }
  250. .jtImg{
  251. width: 12rpx;height: 20rpx;
  252. margin-top: 10rpx;
  253. }
  254. .screenBox{
  255. background: #FFFFFF;
  256. margin-bottom: 20rpx;
  257. position: fixed;
  258. width: 100vw;
  259. top: 0;left: 0;
  260. }
  261. .screenName{
  262. padding: 24rpx;font-size: 28rpx;
  263. display: flex;
  264. justify-content: space-between;
  265. }
  266. .itemHistory {
  267. margin: 0rpx 24rpx 20rpx;
  268. padding: 20rpx;
  269. background-color: #FFFFFF;
  270. border-radius: 10rpx;
  271. }
  272. .topBox{
  273. display: flex;
  274. justify-content: space-between;
  275. align-items: center;
  276. }
  277. .dan {
  278. font-size: 24rpx;
  279. color: #999999;
  280. }
  281. .stateBox{
  282. display: flex;
  283. }
  284. .danState{
  285. font-size: 24rpx;
  286. color: #FF4F00;
  287. }
  288. .danState2{
  289. font-size: 24rpx;
  290. color: #999999;
  291. }
  292. .time {
  293. font-size: 24rpx;
  294. color: #999999;
  295. }
  296. .carPlate {
  297. margin: 20rpx 0rpx 15rpx;
  298. display: flex;
  299. align-items: center;
  300. justify-content: space-between;
  301. }
  302. .plateBox {
  303. display: flex;
  304. }
  305. .plate {
  306. font-size: 30rpx;
  307. color: #3C3C3C;
  308. font-weight: bold;
  309. margin-right: 20rpx;
  310. }
  311. .mileage {
  312. font-size: 24rpx;
  313. color: #F19D01;
  314. padding: 0rpx 10rpx;
  315. border: 1px solid #F19D01;
  316. border-radius: 4rpx;
  317. height: 33rpx;
  318. }
  319. .price{
  320. font-size: 32rpx;
  321. font-weight: 500;
  322. color: #FF0000;
  323. }
  324. .itemN {
  325. margin-top: 15rpx;
  326. display: flex;
  327. /* 隐藏文字显示 ...不换行 */
  328. overflow: hidden;
  329. text-overflow: ellipsis;
  330. white-space: nowrap;
  331. }
  332. .shopName{
  333. color: #666666;
  334. font-size: 24rpx;
  335. margin-top: 15rpx;
  336. /* 隐藏文字显示 ...不换行 */
  337. overflow: hidden;
  338. text-overflow: ellipsis;
  339. white-space: nowrap;
  340. }
  341. .itemContent {
  342. color: #666666;
  343. font-size: 24rpx;
  344. }
  345. .bottom{
  346. padding-top: 20rpx;
  347. border-top: 1rpx solid #EEEEEE;
  348. margin-top: 20rpx;
  349. display: flex;
  350. justify-content: flex-end;
  351. font-size: 28rpx;
  352. margin-left: -24rpx;
  353. margin-right: -24rpx;
  354. }
  355. .ping{
  356. text-align: center;
  357. color: #FF4F00;
  358. width: 150rpx;
  359. height: 56rpx;
  360. line-height: 56rpx;
  361. border-radius: 36rpx;
  362. border: 2rpx solid #FF4F00;
  363. margin-right: 24rpx;
  364. }
  365. .kan{
  366. text-align: center;
  367. color: #3C3C3C;
  368. width: 150rpx;
  369. height: 56rpx;
  370. line-height: 56rpx;
  371. border-radius: 36rpx;
  372. border: 2rpx solid #DDDDDD;
  373. margin-right: 24rpx;
  374. }
  375. .noMore {
  376. text-align: center;
  377. line-height: 50rpx;
  378. color: #999999;
  379. font-size: 28rpx;
  380. }
  381. </style>