europeOrder.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  1. <template>
  2. <view class="box">
  3. <view class="zdyNavBox">
  4. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  5. <view class="zdyNav">
  6. <view class="zdyNavLeft">
  7. <image src="../../static/img/nav_icon_back.png" mode="aspectFit" class="backImg" @click="goback">
  8. </image>
  9. </view>
  10. <view class="zdyNavTitle">订单管理</view>
  11. <view style="width: 50px;"></view>
  12. </view>
  13. </view>
  14. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  15. <view style="height: 44px;"></view>
  16. <view class="tab">
  17. <view class="tabLine" :class="{tabActive:tabIndex==5}" @click="tabClick(5)">全部</view>
  18. <view class="tabLine" :class="{tabActive:tabIndex==1}" @click="tabClick(1)">待付款</view>
  19. <view class="tabLine" :class="{tabActive:tabIndex==2}" @click="tabClick(2)">待服务</view>
  20. <view class="tabLine" :class="{tabActive:tabIndex==4}" @click="tabClick(4)">待评价</view>
  21. </view>
  22. <view class="main">
  23. <view class="itemLine" v-for="(item,index) in items" @click="goDetail(item.ID)">
  24. <view class="flex2 itemlineTOp">
  25. <view class="itemCode">{{item.Code}}</view>
  26. <view class="itemSheetState" v-if="item.SheetState==1">待付款</view>
  27. <view class="itemSheetState" v-if="item.SheetState==2">待服务</view>
  28. <view class="itemSheetState" v-if="item.SheetState==3||item.SheetState==5">已完成</view>
  29. <view class="itemSheetState" v-if="item.SheetState==4">已完成</view>
  30. <view class="itemSheetState" v-if="item.SheetState==0">已取消</view>
  31. </view>
  32. <view class="itemLineImgBox">
  33. <view class="itemGoddsImgBox">
  34. <view v-for="(v,i) in item.goods.concat(item.items)" v-if="i<4">
  35. <image :src="v.Url" mode="" class="goodsImg" v-if="i<4&&v"></image>
  36. <image src="../../static/img/noimg.png" mode="" class="goodsImg" v-else></image>
  37. </view>
  38. <view v-if="item.goods.concat(item.items).length==0">
  39. <image src="../../static/img/noimg.png" mode="" class="goodsImg" ></image>
  40. </view>
  41. </view>
  42. <view>
  43. <image src="../../static/img/diandian.png" mode="widthFix" class="diandianImg"></image>
  44. </view>
  45. </view>
  46. <view class="raleMoneyBox">
  47. <span>实付款</span> <span class="raleMoneySpan">¥{{item.raleMoney}}</span>
  48. </view>
  49. <!-- 待服务的-->
  50. <view class="daifuwuBOxDiv" v-if="item.SheetState==2">
  51. <view class="daifuwuBOx">
  52. <view class="daifuwuBOxTop">
  53. <image src="../../static/img/orderyytime.png" mode="" class="orderyytimeImg"></image>
  54. <view class="daifuwuBOxTitle">预约信息</view>
  55. </view>
  56. <view class="daifuwuBOxLIne">门店名称:{{item.ShopName}}</view>
  57. <view class="daifuwuBOxLIne">预约到店信息:{{item.OrderTime}}</view>
  58. </view>
  59. </view>
  60. <view class="itemLineBottom" v-if="item.SheetState==1||item.SheetState==3||item.SheetState==4||item.SheetState==2">
  61. <view class="itemBtn1" v-if="item.SheetState==1||item.SheetState==2" @click.stop="cancelOrder(item)">取消订单</view>
  62. <view class="itemBtn2" v-if="item.SheetState==1" @click.stop="orderPay(item)">立即支付</view>
  63. <view class="itemBtn2" v-if="item.EvaluateState==0&&item.EState==1" @click.stop="goEvaluate(item)">立即评价</view>
  64. <view class="itemBtn1" v-if="item.EvaluateState==1" @click.stop="gopingjia(item)">查看评价</view>
  65. </view>
  66. </view>
  67. <nodata v-show="items==''&&isload"></nodata>
  68. </view>
  69. </view>
  70. </template>
  71. <script>
  72. import nodata from '@/components/nodata/nodata.vue'
  73. export default {
  74. components: {
  75. nodata
  76. },
  77. data() {
  78. return {
  79. page:1,
  80. state:'',
  81. num:'',
  82. tabIndex:'',
  83. items:[],
  84. isload:false,
  85. }
  86. },
  87. onLoad(opt) {
  88. var num=opt.num;
  89. this.tabIndex=num;
  90. this.items=[]
  91. if(num==5){
  92. this.state=''
  93. }else{
  94. this.state=num
  95. }
  96. this.getData()
  97. },
  98. onShow() {
  99. console.log(this.tabIndex)
  100. var evaluate = uni.getStorageSync("evaluate")
  101. if(evaluate){
  102. this.items=[]
  103. this.getData()
  104. uni.removeStorageSync('evaluate');
  105. }
  106. },
  107. methods: {
  108. goback(){
  109. //app交互
  110. var standalone = window.navigator.standalone
  111. var userAgent = window.navigator.userAgent.toLowerCase()
  112. var safari = /safari/.test(userAgent)
  113. var ios = /iphone|ipod|ipad|mac/.test(userAgent)
  114. var android = /android/.test(userAgent)
  115. if (ios) {
  116. if ( true) {//!standalone&& !safari
  117. window.webkit.messageHandlers.goMyNav.postMessage(null)
  118. }
  119. } else if (android) {
  120. window.android.postMessage()
  121. }
  122. },
  123. goEvaluate(item){
  124. uni.navigateTo({
  125. url:'evaluate?shopID=' + item.ShopID + '&sheetID=' + item.ID
  126. })
  127. },
  128. gopingjia(item){
  129. uni.navigateTo({
  130. url:'../me/myAppraiseDetail?id='+item.ID
  131. })
  132. },
  133. cancelOrder(item){
  134. var that=this;
  135. uni.showModal({
  136. title: '提示',
  137. content: '确定要取消订单吗',
  138. success: function (res) {
  139. if (res.confirm) {
  140. uni.showLoading({ title: '加载中'});
  141. that.$http('miniAppMyBMemberCar/updateBMSheetState', {
  142. id:item.ID
  143. },'POST').then(res => {
  144. uni.hideLoading();
  145. that.page=1;
  146. if(item.SheetState==1){
  147. uni.showModal({
  148. title: '提示',
  149. content: '订单取消成功',
  150. showCancel:false,
  151. success: function (res) {
  152. that.items=[]
  153. that.getData()
  154. }
  155. });
  156. }else{
  157. that.items=[]
  158. that.getData()
  159. uni.showModal({
  160. title: '订单取消成功,请耐心等待银行处理',
  161. content: '金额将原路退还至您的账户。若您使用了优惠券,将退至您的账户',
  162. showCancel:false,
  163. success: function (res) {
  164. }
  165. });
  166. }
  167. })
  168. } else if (res.cancel) {
  169. }
  170. }
  171. });
  172. },
  173. tabClick(num){
  174. this.tabIndex=num;
  175. if(num==5){
  176. this.state=''
  177. }else{
  178. this.state=num
  179. }
  180. this.items=[];
  181. this.page=1;
  182. this.getData()
  183. },
  184. goDetail(id){
  185. uni.navigateTo({
  186. url:'eorderDetail?id='+id
  187. })
  188. },
  189. getData(){
  190. uni.showLoading({ title: '加载中'});
  191. this.isload=false;
  192. if(this.state==4){
  193. var padata={
  194. page:this.page,
  195. limit:10,
  196. evaluateState:1
  197. }
  198. }else{
  199. var padata={
  200. page:this.page,
  201. limit:10,
  202. state:this.state
  203. }
  204. }
  205. this.$http('miniAppMyBMemberCar/listMiniAppBMSheetPage', padata,'GET').then(res => {
  206. uni.hideLoading();
  207. this.isload=true;
  208. //this.list=res.data;
  209. var a=res.data.Items;
  210. this.items=this.items.concat(a)
  211. })
  212. },
  213. orderPay(item){
  214. uni.showLoading({ title: '加载中'});
  215. this.$http('miniApp/maintainOrder/orderPay', {
  216. sheetID:item.ID
  217. },'POST').then(res => {
  218. uni.hideLoading();
  219. var payInfo=JSON.parse(res.data.payInfo)
  220. uni.requestPayment({
  221. provider: 'wxpay',
  222. // timeStamp: String(Date.now()),
  223. timeStamp:payInfo.timeStamp,
  224. nonceStr: payInfo.nonceStr,
  225. package: payInfo.package,
  226. signType: payInfo.signType,
  227. paySign: payInfo.paySign,
  228. success: function (res) {
  229. console.log('success:' + JSON.stringify(res));
  230. uni.showToast({
  231. title: '支付成功',
  232. icon:'none',
  233. duration: 2000
  234. });
  235. uni.switchTab({
  236. url:'../index/index'
  237. })
  238. },
  239. fail: function (err) {
  240. console.log('fail:' + JSON.stringify(err));
  241. }
  242. });
  243. })
  244. },
  245. },
  246. onReachBottom(){
  247. this.page++;
  248. /* if(this.tabindex==2){
  249. this.getbMemberShopList()
  250. }else if(this.tabindex==3){
  251. this.getShopFootprint()
  252. } */
  253. this.getData()
  254. },
  255. onPullDownRefresh() {
  256. this.page=1;
  257. this.items=[];
  258. this.getData()
  259. setTimeout(function () {
  260. uni.stopPullDownRefresh();
  261. }, 1000);
  262. }
  263. }
  264. </script>
  265. <style scoped>
  266. .zdyNavBox {
  267. width: 100vw;
  268. background: #FFFFFF;
  269. position: fixed;
  270. top: 0;
  271. left: 0;
  272. z-index: 9999999;
  273. }
  274. .zdyNav {
  275. height: 44px;
  276. display: flex;
  277. justify-content: space-between;
  278. align-items: center;
  279. }
  280. .backImg {
  281. width: 44rpx;
  282. height: 44rpx;
  283. margin-left: 10rpx;
  284. margin-right: 20rpx;
  285. }
  286. .homeImg {
  287. width: 44rpx;
  288. height: 44rpx;
  289. }
  290. .zdyNavLeft {
  291. display: flex;
  292. align-items: center;
  293. }
  294. .zdyNavTitle {
  295. height: 44px;
  296. background: #FFFFFF;
  297. text-align: center;
  298. font-size: 34rpx;
  299. line-height: 44px;
  300. }
  301. .box{
  302. min-height: 100vh;
  303. background: #F4F5F7;
  304. }
  305. .tab{
  306. background: #FFFFFF;
  307. display: flex;
  308. justify-content: space-between;
  309. padding: 0 15rpx;
  310. line-height: 84rpx;
  311. position: fixed;
  312. left: 0;
  313. top: 44px;
  314. width: 720rpx;
  315. z-index: 11;
  316. }
  317. .main{
  318. padding-top:88rpx;
  319. padding-left: 24rpx;
  320. padding-right: 24rpx;
  321. }
  322. /* #ifdef MP-WEIXIN */
  323. .tab{
  324. position: fixed;
  325. left: 0;
  326. top: 0;
  327. }
  328. .main{
  329. padding-top: 88rpx ;
  330. }
  331. /* #endif */
  332. .tabLine{
  333. width: 180rpx;
  334. text-align: center;
  335. }
  336. .tabActive{
  337. color: #FF4F00;
  338. border-bottom: 4rpx solid #FF4F00;
  339. }
  340. .flex2{
  341. display: flex;
  342. justify-content: space-between;
  343. }
  344. .itemLine{
  345. background: #FFFFFF;
  346. margin-top: 20rpx;
  347. }
  348. .itemCode{
  349. font-size: 28rpx;
  350. color: #999999;
  351. }
  352. .itemlineTOp{
  353. padding: 25rpx 20rpx;
  354. }
  355. .itemSheetState{
  356. font-size: 30rpx;
  357. color: #FF4F00
  358. }
  359. .goodsImg{
  360. width: 126rpx;
  361. height: 126rpx;
  362. margin-left: 18rpx;
  363. border-radius: 5rpx;
  364. }
  365. .itemLineImgBox{
  366. display: flex;
  367. }
  368. .itemGoddsImgBox{
  369. display: flex;
  370. width:558rpx;
  371. }
  372. .diandianImg{
  373. width: 50rpx;
  374. margin-left: 50rpx;
  375. margin-top: 50rpx;
  376. }
  377. .raleMoneyBox{
  378. text-align: right;
  379. color: #666666;
  380. font-size: 24rpx;
  381. line-height: 50rpx;
  382. padding-bottom: 20rpx;
  383. /* border-bottom: 1px solid #EEEEEE; */
  384. }
  385. .raleMoneySpan{
  386. color: #3C3C3C;
  387. font-size: 32rpx;
  388. padding-right: 24rpx;
  389. padding-left: 10rpx;
  390. }
  391. .itemLineBottom{
  392. display: flex;
  393. justify-content: flex-end;
  394. padding-top: 20rpx;padding-bottom: 20rpx;padding-right: 20rpx;
  395. border-top: 1px solid #EEEEEE; ;
  396. }
  397. .daifuwuBOxDiv{
  398. padding: 20rpx;
  399. }
  400. .itemBtn1{
  401. width: 150rpx;
  402. height: 56rpx;
  403. border-radius: 36rpx;
  404. border: 2rpx solid #DDDDDD;
  405. text-align: center;
  406. line-height: 56rpx;
  407. font-size: 28rpx;
  408. color: #3C3C3C;
  409. margin-left: 40rpx;
  410. }
  411. .itemBtn2{
  412. width: 150rpx;
  413. height: 56rpx;
  414. border-radius: 36rpx;
  415. border: 2rpx solid #FF4F00;
  416. text-align: center;
  417. line-height: 56rpx;
  418. font-size: 28rpx;
  419. color: #FF4F00;
  420. margin-left: 40rpx;
  421. }
  422. .daifuwuBOx{
  423. width: 662rpx;
  424. height: 175rpx;
  425. background: rgba(255, 79, 0, 0.04);
  426. border-radius: 6rpx;
  427. }
  428. .orderyytimeImg{
  429. width: 32rpx;
  430. height: 32rpx;
  431. }
  432. .daifuwuBOxTop{
  433. display: flex;
  434. padding: 20rpx 0 20rpx 20rpx;
  435. color: #FF4F00;
  436. font-size: 28rpx;
  437. }
  438. .daifuwuBOxTitle{
  439. line-height: 32rpx;padding-left: 10rpx;
  440. }
  441. .daifuwuBOxLIne{
  442. color: #666666;
  443. font-size: 26rpx;
  444. line-height: 40rpx;
  445. padding-left: 20rpx;
  446. }
  447. </style>