myOrder.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598
  1. <template>
  2. <view class="box">
  3. <homenav :iStatusBarHeight="iStatusBarHeight" :title="'我的订单'" :cj="3"></homenav>
  4. <view class="tab">
  5. <view class="tabLine" :class="{tabActive:tabIndex==0}" @click="tabClick(0)">全部</view>
  6. <view class="tabLine" :class="{tabActive:tabIndex==1}" @click="tabClick(1)">待付款</view>
  7. <view class="tabLine" :class="{tabActive:tabIndex==5}" @click="tabClick(5)">待成团</view>
  8. <view class="tabLine" :class="{tabActive:tabIndex==2}" @click="tabClick(2)">待服务</view>
  9. <view class="tabLine" :class="{tabActive:tabIndex==3}" @click="tabClick(3)">已完成</view>
  10. </view>
  11. <view class="main">
  12. <view class="itemBg" v-for="(item,index) in items" @click="goDetail(item)">
  13. <view class="itemTop">
  14. <view class="orderCodeBox">
  15. <view class="itemType" v-if="item.SheetType==1">商城-商品订单</view>
  16. <view class="itemType" v-if="item.SheetType==2">商城-项目订单</view>
  17. <view class="itemType" v-if="item.SheetType==3">商城-套餐订单</view>
  18. <view class="itemType" v-if="item.SheetType==4">救援订单</view>
  19. <view class="itemType" v-if="item.SheetType==5">钣喷订单</view>
  20. <view class="itemType" v-if="item.SheetType==6">集客订单</view>
  21. <view class="itemType" v-if="item.SheetType==7">保养订单</view>
  22. <view class="itemType" v-else></view>
  23. <view class="orderCode">:{{item.Code}}</view>
  24. </view>
  25. <view class="itemSheetState redColor" v-if="item.SheetState==5">待成团</view>
  26. <view class="itemSheetState redColor" v-if="item.SheetState==1">待付款</view>
  27. <!-- <view v-if="item.SheetType==7">
  28. <view class="itemSheetState orangeColor" v-if="item.SheetState==2">已完成</view>
  29. </view> -->
  30. <view class="itemSheetState orangeColor" v-if="item.SheetState==2">待服务</view>
  31. <view class="itemSheetState greenColor" v-if="item.SheetState==3">已完成</view>
  32. <view class="itemSheetState" v-if="item.SheetState==4">已取消</view>
  33. </view>
  34. <view class="itemShopBg">
  35. <view class="shopName">{{item.SheetContent}}</view>
  36. <view style="color: #333333;font-size: 22rpx;">¥<span class="price">{{item.PayType==1?item.RealMoney:0}}</span></view>
  37. </view>
  38. <view class="renBox" v-if="item.SheetType==6">
  39. <image src="../../../static/timg/icon_ren.png" mode="" class="renimg"></image>
  40. <view class="renMobilePhone">{{item.MobilePhone}}</view>
  41. <view class="renNickName">{{item.NickName?item.NickName:''}}</view>
  42. </view>
  43. <view class="itemName">{{item.CreateTime}}</view>
  44. <view class="itemName" style="padding-top: 2rpx;padding-bottom: 0;">{{item.ShopName}}</view>
  45. <view class="bottom" v-if="item.SheetState == 1">
  46. <view class="cancel" @click.stop="cancelBespeak(item)">取消订单</view>
  47. <view class="defer" @click.stop="pay(item)">立即支付</view>
  48. </view>
  49. </view>
  50. <nodata v-show="items==''&&isload"></nodata>
  51. </view>
  52. <!-- 手机号授权 -->
  53. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  54. <view class="authorizCont" @click.stop="">
  55. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  56. <view class="authorizMs">未注册的手机号登录后将自动创建会员账号,如果您不同意授权获取手机号,会影响您使用我们的产品和服务。</view>
  57. <button class="authorizContbutton" type="default" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">授权</button>
  58. </view>
  59. <view style="text-align: center;padding-top: 56rpx;">
  60. <image src="../../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  61. </view>
  62. </view>
  63. </view>
  64. </template>
  65. <script>
  66. import nodata from '@/components/nodata/nodata.vue'
  67. import homenav from "@/components/homenav/nav.vue"
  68. export default {
  69. components: {
  70. nodata,homenav
  71. },
  72. data() {
  73. return {
  74. page: 1,
  75. tabIndex: '',
  76. items: [],
  77. isload: false,
  78. iStatusBarHeight:'',
  79. userInfo:'',
  80. ext:'',
  81. wxOpenData:'',
  82. themeColor:'',
  83. authorizShow:false,
  84. code:'',
  85. }
  86. },
  87. onLoad(opt) {
  88. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  89. this.tabIndex = opt.num;
  90. this.userInfo=this.$store.state.userInfo;
  91. this.ext=this.$common.getExtStoreId();
  92. this.themeColor = uni.getStorageSync("themeColor");
  93. if(this.userInfo){
  94. this.getData()
  95. }else{
  96. this.$common.automaticlogin().then(val => {
  97. this.userInfo=this.$store.state.userInfo;
  98. this.wxOpenData=this.$store.state.wxOpenData;
  99. this.themeColor = uni.getStorageSync("themeColor");
  100. this.getData();
  101. if(!this.userInfo){
  102. this.authorizShow=true
  103. }
  104. })
  105. }
  106. },
  107. onShow() {
  108. console.log(this.tabIndex)
  109. this.getData()
  110. },
  111. methods: {
  112. pay(item){
  113. this.$http('openMallOrder/unifiedPay', {
  114. sheetId:item.ID
  115. },'POST').then(res => {
  116. if(res.code==0){
  117. this.requestPayment(res.data)
  118. }else{
  119. uni.showToast({
  120. title: res.msg,
  121. icon: 'none',
  122. duration: 3000
  123. });
  124. }
  125. })
  126. },
  127. requestPayment(res){
  128. var payInfo=res;
  129. //console.log(payInfo)
  130. //console.log(String(Date.now()))
  131. var that=this;
  132. uni.requestPayment({
  133. provider: 'wxpay',
  134. //timeStamp: String(Date.now()),
  135. timeStamp: payInfo.timeStamp,
  136. nonceStr: payInfo.nonceStr,
  137. package:payInfo.package,
  138. signType: payInfo.signType,
  139. paySign: payInfo.paySign,
  140. appid:payInfo.appId,
  141. success: function (res) {
  142. console.log('success:' + JSON.stringify(res));
  143. uni.showToast({
  144. title: '支付成功',
  145. icon:'none',
  146. duration: 2000
  147. });
  148. that.tabIndex=0
  149. that.page = 1;
  150. that.getData()
  151. },
  152. fail: function (err) {
  153. console.log(err)
  154. uni.showToast({
  155. title: '支付失败',
  156. icon:'none',
  157. duration: 2000
  158. });
  159. }
  160. });
  161. },
  162. cancelBespeak(item){
  163. var that = this
  164. uni.showModal({
  165. title: '提示',
  166. content: '是否取消该订单',
  167. cancelText:'否',
  168. confirmText:'是',
  169. success: function (res) {
  170. if (res.confirm) {
  171. uni.showLoading({
  172. title: '加载中'
  173. })
  174. that.$http('openOrderManagement/updateSheetState', {
  175. id: item.ID,
  176. }, 'POST').then(res => {
  177. uni.hideLoading();
  178. // var list = res.data.Items
  179. uni.showToast({
  180. title: '取消成功',
  181. icon: 'none',
  182. duration: 2000
  183. });
  184. setTimeout(function() {
  185. that.page = 1;
  186. that.getData();
  187. }, 100);
  188. })
  189. } else if (res.cancel) {
  190. }
  191. }
  192. });
  193. },
  194. decryptPhoneNumber: function(e) {
  195. console.log(e);
  196. this.code=e.detail.code
  197. this.wxPhoneLogin()
  198. this.authorizShow=false;
  199. },
  200. wxPhoneLogin(){
  201. var that=this;
  202. this.$http('miniApp2/sys/wxPhoneLogin', {
  203. appId:this.ext.appId,
  204. unionId:this.ext.unionId,
  205. code:this.code,
  206. openId:this.wxOpenData.openid
  207. },'POST').then(res => {
  208. var data = res.data;
  209. if(data.loginInfo){
  210. this.userInfo=data.loginInfo.openUser;
  211. this.wxOpenData=data.loginInfo;
  212. this.$store.commit('mutationswxOpenData', data)
  213. this.$store.commit('mutationsuserInfo', this.userInfo)
  214. this.getData()
  215. }
  216. })
  217. },
  218. tabClick(num) {
  219. this.tabIndex = num;
  220. this.page = 1;
  221. this.getData()
  222. },
  223. goDetail(item) {
  224. //SheetType 1 商品2项目3套餐4救援5钣喷6集客
  225. if((item.SheetType==1)||(item.SheetType==2)||(item.SheetType==3)){
  226. uni.navigateTo({
  227. url: "mallOrderDetail?id=" + item.ID +"&SheetType=" + item.SheetType
  228. })
  229. }
  230. else if (item.SheetType==5){
  231. uni.navigateTo({
  232. url: "paintOrderDetail?id=" + item.ID
  233. })
  234. }
  235. else if (item.SheetType==6){
  236. uni.navigateTo({
  237. url: "activityOrderDetail?id=" + item.ID//+'&sx=1'
  238. })
  239. }
  240. },
  241. getData() {
  242. uni.showLoading({
  243. title: '加载中'
  244. });
  245. this.isload = false;
  246. var padata = {
  247. page: this.page,
  248. limit: 10,
  249. sheetState: this.tabIndex > 0 ? this.tabIndex : ''
  250. }
  251. this.$http('openOrderManagement/getOpenSheetList', padata, 'GET').then(res => {
  252. uni.hideLoading();
  253. this.isload = true;
  254. var list = res.data.Items;
  255. if (this.page == 1) {
  256. this.items = list
  257. } else {
  258. this.items = this.items.concat(list)
  259. }
  260. })
  261. },
  262. },
  263. onReachBottom() {
  264. this.page++;
  265. this.getData()
  266. },
  267. onPullDownRefresh() {
  268. this.page = 1;
  269. this.getData()
  270. setTimeout(function() {
  271. uni.stopPullDownRefresh();
  272. }, 1000);
  273. }
  274. }
  275. </script>
  276. <style scoped>
  277. .box {
  278. min-height: 100vh;
  279. background: #F4F5F7;
  280. }
  281. .renBox{
  282. color: #1A1A1A;
  283. background: #F7F7F7;
  284. border-radius: 10rpx;
  285. display: flex;
  286. padding: 20rpx;font-size: 24rpx;
  287. line-height: 30rpx;
  288. margin-top: 16rpx;
  289. }
  290. .renimg{
  291. width: 30rpx;height: 30rpx;
  292. }
  293. .renMobilePhone{
  294. padding-left: 13rpx;
  295. }
  296. .renNickName{
  297. padding-left: 20rpx;
  298. }
  299. .tab {
  300. background: #FFFFFF;
  301. display: flex;
  302. justify-content: space-between;
  303. line-height: 92rpx;
  304. position: fixed;
  305. width: calc(100vw - 100rpx);
  306. padding-left: 50rpx;
  307. padding-right: 50rpx;
  308. height: 92rpx;
  309. z-index: 11;
  310. }
  311. .tabLine {
  312. font-size: 28rpx;
  313. color: #333333;
  314. text-align: center;
  315. }
  316. .tabActive {
  317. color: #EC0F0A;
  318. font-weight: bold;
  319. border-bottom: 4rpx solid #EC0F0A;
  320. }
  321. .main {
  322. padding-top: 92rpx;
  323. padding-bottom: 20rpx;
  324. background-color: #F4F5F7;
  325. }
  326. .itemBg {
  327. margin: 20rpx 24rpx;
  328. background-color: #FFFFFF;
  329. border-radius: 10rpx;
  330. padding: 20rpx;
  331. }
  332. .itemTop {
  333. display: flex;
  334. justify-content: space-between;
  335. }
  336. .itemType {
  337. color: #999999;
  338. font-size: 24rpx;
  339. }
  340. .itemSheetState {
  341. font-size: 24rpx;
  342. color: #999999
  343. }
  344. .redColor {
  345. color: #EC0F0A;
  346. }
  347. .orangeColor {
  348. color: #F19D01;
  349. }
  350. .greenColor {
  351. color: #00A040;
  352. }
  353. .itemShopBg {
  354. display: flex;
  355. justify-content: space-between;
  356. margin-top: 20rpx;
  357. }
  358. .shopName {
  359. color: #333333;
  360. font-size: 30rpx;
  361. font-weight: bold;
  362. /* 隐藏文字显示 ...不换行 */
  363. overflow: hidden;
  364. text-overflow: ellipsis;
  365. white-space: nowrap;
  366. }
  367. .price {
  368. color: #333333;
  369. font-weight: bold;
  370. font-size: 32rpx;
  371. }
  372. .itemName {
  373. color: #666666;
  374. font-size: 24rpx;
  375. padding: 16rpx 0;
  376. height: 30rpx;
  377. overflow: hidden;
  378. text-overflow: ellipsis;
  379. white-space: nowrap;
  380. }
  381. .plateBg {
  382. display: flex;
  383. justify-content: space-between;
  384. align-items: center;
  385. }
  386. .plateNumber {
  387. color: #666666;
  388. font-size: 24rpx;
  389. margin-bottom: 20rpx;
  390. display: flex;
  391. }
  392. .itemLineBottom {
  393. display: flex;
  394. justify-content: flex-end;
  395. }
  396. .itemBtn1 {
  397. width: 150rpx;
  398. height: 56rpx;
  399. border-radius: 36rpx;
  400. border: 2rpx solid #DDDDDD;
  401. text-align: center;
  402. line-height: 56rpx;
  403. font-size: 28rpx;
  404. color: #3C3C3C;
  405. margin-left: 40rpx;
  406. }
  407. .itemBtn2 {
  408. width: 150rpx;
  409. height: 56rpx;
  410. border-radius: 36rpx;
  411. border: 2rpx solid #FF4F00;
  412. text-align: center;
  413. line-height: 56rpx;
  414. font-size: 28rpx;
  415. color: #FF4F00;
  416. margin-left: 40rpx;
  417. }
  418. .orderState {
  419. color: #F19D01;
  420. font-size: 24rpx;
  421. padding-left: 20rpx;
  422. }
  423. .authorizBox{
  424. width: 100vw;
  425. height: 100vh;
  426. background: rgba(0, 0, 0, 0.5);
  427. position: fixed;
  428. top: 0;
  429. left: 0;
  430. }
  431. .authorizCont{
  432. margin-top: 30vh;
  433. width: 564rpx;
  434. height: 408rpx;
  435. background: #FFFFFF;
  436. border-radius: 24rpx;
  437. margin-left: 93rpx;
  438. position: relative;
  439. }
  440. .authorizCloseImg{
  441. width: 62rpx;
  442. height: 62rpx;
  443. }
  444. .sqLogoBox{
  445. width: 180rpx;
  446. height: 180rpx;
  447. background: #FFFFFF;
  448. border-radius: 90rpx;
  449. text-align: center;
  450. position: absolute;
  451. top: -50rpx;
  452. left: 192rpx;
  453. }
  454. .authorizName{
  455. color: #333333;
  456. line-height: 42rpx;
  457. font-size: 30rpx;
  458. text-align: center;
  459. padding-top: 58rpx;
  460. }
  461. .authorizMs{
  462. color: #999999;
  463. line-height: 36rpx;
  464. font-size: 26rpx;
  465. width: 452rpx;
  466. padding-top: 24rpx;
  467. text-align: center;
  468. margin-left: 56rpx;
  469. }
  470. .authorizContbutton{
  471. width: 422rpx;
  472. height: 88rpx;
  473. background: #EC0F0A;
  474. border-radius: 44rpx;
  475. line-height: 88rpx;
  476. text-align: center;
  477. font-size:30rpx;
  478. color: #FFFFFF;
  479. margin-top: 62rpx;
  480. margin-left:71rpx;
  481. }
  482. .shopBoxpt{
  483. margin-top: 20rpx;
  484. }
  485. button::after{
  486. border: none;
  487. }
  488. button{
  489. position: relative;
  490. display: block;
  491. margin-left: 0;
  492. margin-right: 0;
  493. padding-left: 0px;
  494. padding-right: 0px;
  495. box-sizing: border-box;
  496. // font-size: 18px;
  497. text-align: center;
  498. text-decoration: none;
  499. // line-height: 1;
  500. line-height: 1.35;
  501. // border-radius: 5px;
  502. -webkit-tap-highlight-color: transparent;
  503. overflow: hidden;
  504. color: #000000;
  505. background-color: #fff;
  506. height: 100%;
  507. }
  508. .orderCodeBox{
  509. display: flex;
  510. }
  511. .orderCode{
  512. color: #999999; font-size: 24rpx;
  513. }
  514. .cancel {
  515. color: #3C3C3C;
  516. font-size: 24rpx;
  517. width: 120rpx;
  518. height: 40rpx;
  519. border-radius: 20rpx;
  520. border: 1rpx solid #DDDDDD;
  521. text-align: center;
  522. line-height: 40rpx;
  523. margin-right: 20rpx;
  524. }
  525. .defer {
  526. color: #EC0F0A;
  527. font-size: 24rpx;
  528. width: 120rpx;
  529. height: 40rpx;
  530. border-radius: 20rpx;
  531. border: 1rpx solid #EC0F0A;
  532. text-align: center;
  533. line-height: 40rpx;
  534. }
  535. .bottom{
  536. display: flex;
  537. justify-content: flex-end;
  538. }
  539. </style>