myorder.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  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;">立即付款</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. orderinfo(id) {
  79. uni.navigateTo({
  80. url: '/pages/success?id=' + id
  81. })
  82. },
  83. change(index) {
  84. this.current = index;
  85. if (this.current == 0) {
  86. this.status = ''
  87. } else if (this.current < 3) {
  88. this.status = index - 1
  89. } else if (this.current == 3) {
  90. this.status = -1
  91. }
  92. this.getOrderList()
  93. },
  94. //删除订单
  95. delect(id) {
  96. var that = this
  97. uni.showModal({
  98. title: '提示',
  99. content: '确定删除该订单吗',
  100. success: function(res) {
  101. if (res.confirm) {
  102. that.delect1(id)
  103. } else if (res.cancel) {
  104. console.log('用户点击取消');
  105. }
  106. }
  107. });
  108. },
  109. delect1(id) {
  110. this.$u.post('api/order/delOrder', {
  111. id: id
  112. }).then(res => {
  113. if (res.code == 1) {
  114. this.$u.toast('订单已删除')
  115. this.getOrderList()
  116. }
  117. })
  118. },
  119. cancel(id) {
  120. var that = this
  121. uni.showModal({
  122. title: '提示',
  123. content: '确定取消该订单吗',
  124. success: function(res) {
  125. if (res.confirm) {
  126. that.cancel1(id)
  127. } else if (res.cancel) {
  128. console.log('用户点击取消');
  129. this.getOrderList()
  130. }
  131. }
  132. });
  133. },
  134. cancel1(id) {
  135. this.$u.post('api/order/cancellationOrder', {
  136. id: id
  137. }).then(res => {
  138. if (res.code == 1) {
  139. this.$u.toast('订单已取消')
  140. }
  141. })
  142. },
  143. getOrderList() {
  144. this.$u.post('api/order/getOrderList', {
  145. page: this.page,
  146. limit: this.limit,
  147. status: this.status
  148. }).then(res => {
  149. if (res.code == 1) {
  150. if (this.page == 1) {
  151. this.orderlist = res.data.data
  152. this.total = res.data.total
  153. } else {
  154. this.orderlist.concat(res.data.data)
  155. }
  156. }
  157. })
  158. }
  159. }
  160. }
  161. </script>
  162. <style lang="scss">
  163. .cancel {
  164. width: 148rpx;
  165. height: 68rpx;
  166. border-radius: 8rpx;
  167. border: 2rpx solid #979797;
  168. line-height: 68rpx;
  169. text-align: center;
  170. margin-left: 20rpx;
  171. }
  172. .pay {
  173. width: 160rpx;
  174. height: 68rpx;
  175. background: #06A971;
  176. border-radius: 8rpx;
  177. line-height: 68rpx;
  178. text-align: center;
  179. margin-left: 20rpx;
  180. }
  181. .name {
  182. font-size: 28rpx;
  183. font-family: PingFangHK, PingFangHK;
  184. font-weight: 400;
  185. color: #333333;
  186. width: 500rpx;
  187. }
  188. .font1 {
  189. font-size: 26rpx;
  190. font-family: PingFangSC, PingFang SC;
  191. font-weight: 400;
  192. color: #222222;
  193. }
  194. .font2 {
  195. font-size: 36rpx;
  196. font-family: JDZhengHT, JDZhengHT;
  197. font-weight: 500;
  198. color: #222222;
  199. }
  200. .font3 {
  201. font-size: 26rpx;
  202. font-family: JDZhengHT, JDZhengHT;
  203. font-weight: 300;
  204. color: #222222;
  205. margin-left: 14rpx;
  206. margin-top: 10rpx;
  207. }
  208. .type {
  209. font-size: 24rpx;
  210. font-family: PingFangSC, PingFang SC;
  211. font-weight: 400;
  212. color: #444444;
  213. margin-top: 8rpx;
  214. }
  215. .shapping {
  216. margin-top: 28rpx;
  217. }
  218. .money {
  219. font-size: 32rpx;
  220. font-family: SFPro, SFPro;
  221. font-weight: 400;
  222. color: #333333;
  223. margin-top: 42rpx;
  224. }
  225. ::v-deep .u-tab-bar {
  226. background-color: #06A971 !important;
  227. }
  228. .state {
  229. font-size: 24rpx;
  230. font-family: PingFangSC, PingFang SC;
  231. font-weight: 400;
  232. color: #CF1534;
  233. }
  234. ::v-deep .u-tab-item {
  235. color: #222 !important
  236. }
  237. .book {
  238. margin: 28rpx 0 0 0;
  239. border-top: 2rpx solid rgba(151, 151, 151, 0.2);
  240. }
  241. .order {
  242. font-size: 24rpx;
  243. font-family: SFPro, SFPro;
  244. font-weight: 400;
  245. color: #222222;
  246. }
  247. .box {
  248. width: 694rpx;
  249. // height: 472rpx;
  250. background: #FFFFFF;
  251. border-radius: 16rpx;
  252. padding: 28rpx 20rpx 30rpx;
  253. margin-top: 20rpx;
  254. box-sizing: border-box;
  255. }
  256. .list {
  257. padding: 20rpx 28rpx;
  258. }
  259. .page {
  260. background: #F6F6F6;
  261. min-height: 100vh;
  262. }
  263. </style>