myorder.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. <template>
  2. <view class="page">
  3. <u-tabs :font-size='28' :list="list" :is-scroll="false" :current="current" @change="change"></u-tabs>
  4. <view class="list">
  5. <view class="box" v-for="(item,index) in orderlist" :key="index">
  6. <view class="u-flex u-row-between">
  7. <text class="order">订单编号:{{item.order_on}}</text>
  8. <view class="">
  9. <text v-if="item.status==0" class="state">
  10. {{item.status_text}}
  11. </text>
  12. <text v-else class="state" style="color: rgba(0, 0, 0, 0.60);">
  13. {{item.status_text}}
  14. </text>
  15. </view>
  16. </view>
  17. <view class="book">
  18. <view class="u-flex" style="margin-top: 26rpx;" v-for="(item1,index) in item.goods">
  19. <view class="" style="padding: 0 20rpx;">
  20. <image :src="item1.good_item.image" style="width: 120rpx;height: 160rpx;" mode=""></image>
  21. </view>
  22. <view class="" style="margin-left: 20rpx;">
  23. <view class="name u-line-1">{{item1.good_item.title}}</view>
  24. <view class="type">资源类型:付费资源</view>
  25. <view class="money">¥{{item1.good_item.price}}</view>
  26. </view>
  27. </view>
  28. <view class="shapping u-flex " style="justify-content: end;">
  29. <text class="font1">商品金额:</text>
  30. <text class="font3">¥</text>
  31. <text class="font2">{{item.total_price}}</text>
  32. </view>
  33. <view class="u-flex " style="margin-top: 28rpx;justify-content: end;">
  34. <view v-if="item.status ==0" class="cancel" @click="cancel(item.id)">取消订单</view>
  35. <view v-if="item.status ==0" class="pay" style="color: #fff;" @click="pay(item.id)">立即付款</view>
  36. <view v-if="item.status ==-1" class=" cancel" @click="delect(item.id)">删除订单</view>
  37. <view v-if="item.status ==1||item.status ==0" class="details cancel"
  38. @click="orderinfo(item.id)">查看详情</view>
  39. </view>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. export default {
  47. data() {
  48. return {
  49. list: [{
  50. name: '全部'
  51. }, {
  52. name: '待支付'
  53. }, {
  54. name: '已完成',
  55. }, {
  56. name: '已取消',
  57. }],
  58. current: 0,
  59. page: 1,
  60. limit: 10,
  61. status: '',
  62. orderlist: [],
  63. total: ''
  64. };
  65. },
  66. onLoad() {
  67. if (uni.getStorageSync('token')) {
  68. this.getOrderList()
  69. }
  70. },
  71. onPullDownRefresh() {
  72. if (this.orderlist.length < this.total) {
  73. this.page++
  74. this.getOrderList()
  75. }
  76. },
  77. methods: {
  78. pay(id){
  79. uni.navigateTo({
  80. url:'/pages/index/orderinfo?id='+id
  81. })
  82. },
  83. orderinfo(id) {
  84. uni.navigateTo({
  85. url: '/pages/success?id=' + id
  86. })
  87. },
  88. change(index) {
  89. this.current = index;
  90. if (this.current == 0) {
  91. this.status = ''
  92. } else if (this.current < 3) {
  93. this.status = index - 1
  94. } else if (this.current == 3) {
  95. this.status = -1
  96. }
  97. this.getOrderList()
  98. },
  99. //删除订单
  100. delect(id) {
  101. var that = this
  102. uni.showModal({
  103. title: '提示',
  104. content: '确定删除该订单吗',
  105. success: function(res) {
  106. if (res.confirm) {
  107. that.delect1(id)
  108. } else if (res.cancel) {
  109. console.log('用户点击取消');
  110. }
  111. }
  112. });
  113. },
  114. delect1(id) {
  115. this.$u.post('api/order/delOrder', {
  116. id: id
  117. }).then(res => {
  118. if (res.code == 1) {
  119. this.$u.toast('订单已删除')
  120. this.getOrderList()
  121. }
  122. })
  123. },
  124. cancel(id) {
  125. var that = this
  126. uni.showModal({
  127. title: '提示',
  128. content: '确定取消该订单吗',
  129. success: function(res) {
  130. if (res.confirm) {
  131. that.cancel1(id)
  132. } else if (res.cancel) {
  133. console.log('用户点击取消');
  134. this.getOrderList()
  135. }
  136. }
  137. });
  138. },
  139. cancel1(id) {
  140. this.$u.post('api/order/cancellationOrder', {
  141. id: id
  142. }).then(res => {
  143. if (res.code == 1) {
  144. this.$u.toast('订单已取消')
  145. }
  146. })
  147. },
  148. getOrderList() {
  149. this.$u.post('api/order/getOrderList', {
  150. page: this.page,
  151. limit: this.limit,
  152. status: this.status
  153. }).then(res => {
  154. if (res.code == 1) {
  155. if (this.page == 1) {
  156. this.orderlist = res.data.data
  157. this.total = res.data.total
  158. } else {
  159. this.orderlist.concat(res.data.data)
  160. }
  161. }
  162. })
  163. }
  164. }
  165. }
  166. </script>
  167. <style lang="scss">
  168. .cancel {
  169. width: 148rpx;
  170. height: 68rpx;
  171. border-radius: 8rpx;
  172. border: 2rpx solid #979797;
  173. line-height: 68rpx;
  174. text-align: center;
  175. margin-left: 20rpx;
  176. }
  177. .pay {
  178. width: 160rpx;
  179. height: 68rpx;
  180. background: #06A971;
  181. border-radius: 8rpx;
  182. line-height: 68rpx;
  183. text-align: center;
  184. margin-left: 20rpx;
  185. }
  186. .name {
  187. font-size: 28rpx;
  188. font-family: PingFangHK, PingFangHK;
  189. font-weight: 400;
  190. color: #333333;
  191. width: 500rpx;
  192. }
  193. .font1 {
  194. font-size: 26rpx;
  195. font-family: PingFangSC, PingFang SC;
  196. font-weight: 400;
  197. color: #222222;
  198. }
  199. .font2 {
  200. font-size: 36rpx;
  201. font-family: JDZhengHT, JDZhengHT;
  202. font-weight: 500;
  203. color: #222222;
  204. }
  205. .font3 {
  206. font-size: 26rpx;
  207. font-family: JDZhengHT, JDZhengHT;
  208. font-weight: 300;
  209. color: #222222;
  210. margin-left: 14rpx;
  211. margin-top: 10rpx;
  212. }
  213. .type {
  214. font-size: 24rpx;
  215. font-family: PingFangSC, PingFang SC;
  216. font-weight: 400;
  217. color: #444444;
  218. margin-top: 8rpx;
  219. }
  220. .shapping {
  221. margin-top: 28rpx;
  222. }
  223. .money {
  224. font-size: 32rpx;
  225. font-family: SFPro, SFPro;
  226. font-weight: 400;
  227. color: #333333;
  228. margin-top: 42rpx;
  229. }
  230. ::v-deep .u-tab-bar {
  231. background-color: #06A971 !important;
  232. }
  233. .state {
  234. font-size: 24rpx;
  235. font-family: PingFangSC, PingFang SC;
  236. font-weight: 400;
  237. color: #CF1534;
  238. }
  239. ::v-deep .u-tab-item {
  240. color: #222 !important
  241. }
  242. .book {
  243. margin: 28rpx 0 0 0;
  244. border-top: 2rpx solid rgba(151, 151, 151, 0.2);
  245. }
  246. .order {
  247. font-size: 24rpx;
  248. font-family: SFPro, SFPro;
  249. font-weight: 400;
  250. color: #222222;
  251. }
  252. .box {
  253. width: 694rpx;
  254. // height: 472rpx;
  255. background: #FFFFFF;
  256. border-radius: 16rpx;
  257. padding: 28rpx 20rpx 30rpx;
  258. margin-top: 20rpx;
  259. box-sizing: border-box;
  260. }
  261. .list {
  262. padding: 20rpx 28rpx;
  263. }
  264. .page {
  265. background: #F6F6F6;
  266. min-height: 100vh;
  267. }
  268. </style>