orderSuccess.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. <template>
  2. <view class="uni-flex paySuccess jz_paySuccess uni-column jz_merchant">
  3. <view v-if="order.payMode==2" class="paySuccess_header uni-flex uni-column">
  4. <view class="payok uni-flex justify-align-center">提交成功</view>
  5. <view class="payarrive uni-flex justify-align-center">转账请备注订单识别码:<text style="font-size: 28upx; color: #FF0000;">{{order.payBankCode}}</text></view>
  6. <view class="paybtns uni-flex justify-align-center uni-row">
  7. <view @click="view()" class="lookOrder uni-flex justify-align-center">查看订单</view>
  8. <view @click="home()" class="goHome uni-flex justify-align-center">继续逛</view>
  9. </view>
  10. </view>
  11. <view v-else class="paySuccess_header uni-flex uni-column">
  12. <view class="payok uni-flex justify-align-center">付款成功</view>
  13. <view class="paybtns uni-flex justify-align-center uni-row">
  14. <view @click="view()" class="lookOrder uni-flex justify-align-center">查看订单</view>
  15. <view @click="home()" class="goHome uni-flex justify-align-center">继续逛</view>
  16. </view>
  17. </view>
  18. <!-- <view class="paySuccess_footer uni-flex uni-column">
  19. <view class="payname uni-flex ">
  20. <view class="paynick commonfont">{{address[0]}}</view>
  21. <view class="payphone commonfont">{{address[1]}}</view>
  22. </view>
  23. <view class="payaddress commonfont">{{address[2]}}{{address[3]}}{{address[4]}}{{address[5]}}</view>
  24. <view class="payprice uni-flex">
  25. <view class="commonfont">实付</view>
  26. <view class="commonfont">¥{{order.totalPrice}}</view>
  27. </view>
  28. </view> -->
  29. <!-- <recommend :items="items" :src="src"></recommend> -->
  30. <view class="recommend uni-flex uni-column">
  31. <view class="push_product_title uni-flex justify-align-center">
  32. <image :src="src"></image>
  33. <view class="push_title">为你推荐</view>
  34. </view>
  35. <view class="uni-flex lists-wrap">
  36. <view class="uni-flex uni-row list">
  37. <view class="uni-product-list" id="list">
  38. <view class="uni-product" v-for="(item, key) in items" :key="key" @click="goProduct(item)">
  39. <view class="image-view uni-flex justify-align-center">
  40. <!-- <image :src="item.pic"></image> -->
  41. <image class="image" :class="{lazy:!item.display}" :id="'lazy'+ key" :data-index="0" @load="imageOnLoad(item)"
  42. :src="item.display?item.pic:''" />
  43. <view class="loadbox" :class="{loaded:item.loaded}">
  44. <view class="load"></view>
  45. </view>
  46. </view>
  47. <view class="uni-flex uni-column uni-product-title-wrap">
  48. <view class="uni-product-title uni-flex-item">{{ item.title }}</view>
  49. <view class="product_details uni-flex uni-row">
  50. {{item.profile}}
  51. </view>
  52. <view class="uni-flex-item prices uni-flex">
  53. <view class="prices-salePrice">¥{{ item.salePrice }}</view>
  54. <view class="prices-cart">
  55. <image src="../../../static/category/cart.png"></image>
  56. </view>
  57. </view>
  58. </view>
  59. </view>
  60. </view>
  61. </view>
  62. </view>
  63. </view>
  64. </view>
  65. </template>
  66. <script>
  67. import {
  68. mapState,
  69. mapMutations
  70. } from 'vuex';
  71. import util from '../../../common/util.js';
  72. export default {
  73. computed: {
  74. ...mapState(['hasLogin', 'forcedLogin', 'jyyUser'])
  75. },
  76. components: {
  77. },
  78. methods: {
  79. home() {
  80. uni.switchTab({
  81. url: '../../home/home'
  82. });
  83. },
  84. view() {
  85. uni.navigateTo({
  86. url: '../orderInfo/orderInfo?order=' + JSON.stringify(this.order.orderNo),
  87. });
  88. },
  89. getItems() {
  90. uni.request({
  91. url: this.webUrl + 'Recommend',
  92. method: 'POST',
  93. header: {
  94. 'content-type': 'application/x-www-form-urlencoded'
  95. },
  96. success: res => {
  97. this.items = res.data.result.resultInfo;
  98. setTimeout(()=>{
  99. util.loads(this.items, 'list', this.windowHeight);
  100. },300)
  101. },
  102. fail: () => {},
  103. complete: () => {}
  104. });
  105. },
  106. imageOnLoad(e) {
  107. e.loaded = true;
  108. },
  109. goProduct(e) {
  110. uni.navigateTo({
  111. url: '../../merchant/product/product?id=' + e.id
  112. })
  113. },
  114. getDate() {
  115. uni.showLoading({
  116. title: "加载中"
  117. })
  118. uni.request({
  119. url: this.webUrl + 'GetOrderInfo',
  120. method: 'POST',
  121. data: {
  122. orderNo: this.no,
  123. userid: this.user.id
  124. },
  125. header: {
  126. 'content-type': 'application/x-www-form-urlencoded'
  127. },
  128. success: res => {
  129. uni.hideLoading();
  130. if (res.data.result.isSuccess) {
  131. this.order = res.data.result.uniOrder;
  132. let add = this.order.express;
  133. this.address = add.split(" ");
  134. } else {
  135. uni.showToast({
  136. title: res.data.result.resultInfo,
  137. icon: "none"
  138. })
  139. }
  140. },
  141. fail: () => {},
  142. complete: () => {}
  143. });
  144. }
  145. },
  146. onLoad(e) {
  147. if (!this.hasLogin) {
  148. uni.navigateTo({
  149. url: '../login/login'
  150. });
  151. } else {
  152. this.windowHeight = uni.getSystemInfoSync().windowHeight;
  153. this.user = JSON.parse(this.jyyUser);
  154. this.no = e.no;
  155. this.getDate();
  156. this.getItems();
  157. }
  158. },
  159. onPageScroll() {
  160. util.loads(this.items, 'list', this.windowHeight);
  161. },
  162. data() {
  163. return {
  164. user: {},
  165. order: {},
  166. address: [],
  167. items: [],
  168. src: '../../../static/pay04.png',
  169. windowHeight: 0
  170. };
  171. }
  172. };
  173. </script>
  174. <style></style>