list.vue 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <u-navbar title=" " @leftClick="leftClick" height="44px" bgColor="rgb(255,255,255)" :placeholder="true">
  5. <view class="u-nav-slot" slot="center">
  6. <u-search placeholder="搜索我的订单" v-model="keyword" :showAction="false" @search="search"></u-search>
  7. </view>
  8. </u-navbar>
  9. <view class="tabs hflex acenter jbetween">
  10. <block v-for="(item,index) in tabs" :key="index">
  11. <view class="tab_item" :class="tab_active == index?'tab_active':''" @click="changeTab(index)">{{item.name}}</view>
  12. </block>
  13. </view>
  14. </view>
  15. <view class="box">
  16. <block v-for="(item,index) in pageList" :key="index">
  17. <view class="box_item">
  18. <view class="hflex acenter jbetween cell">
  19. <view class="hflex acenter" @click="toShop(item.id)">
  20. <view class="title">{{item.admin_name}}</view>
  21. <u-icon color="#B5B5B5" name="arrow-right" size="10"></u-icon>
  22. </view>
  23. <view class="text-blue" v-if="item.status == 0">已取消</view>
  24. <view class="text-blue" v-if="item.status == 2">待支付</view>
  25. <view class="text-blue" v-if="item.status == 3">待发货</view>
  26. <view class="text-blue" v-if="item.status == 4">待收货</view>
  27. <view class="text-blue" v-if="item.status == 5">已完成</view>
  28. </view>
  29. <view @click="toOrderDetail(item.id)">
  30. <view class="hflex acenter" v-if="item.goods_item.length == 1">
  31. <view>
  32. <image :src="item.goods_item[0].goods_cover" mode="aspectFill" class="img"></image>
  33. </view>
  34. <view class="img_right">
  35. <view class="hflex acenter jbetween">
  36. <view class="name text_hide">{{item.goods_item[0].goods_name}}</view>
  37. <view class="price">¥{{item.goods_item[0].price_selling}}</view>
  38. </view>
  39. <view class="hflex jbetween" style="padding-top: 12rpx;">
  40. <view class="norm">{{item.goods_item[0].goods_spec}}</view>
  41. <view class="num">X{{item.goods_item[0].number_goods}}</view>
  42. </view>
  43. </view>
  44. </view>
  45. <view class="scroll_img" v-else>
  46. <scroll-view scroll-x="true" style="white-space: nowrap;" class="imgs hflex">
  47. <block v-for="(item2,index2) in item.goods_item" :key="index2">
  48. <view class="imgs_item">
  49. <image :src="item2.goods_cover" class="img"></image>
  50. </view>
  51. </block>
  52. </scroll-view>
  53. <view class="img_leng">共{{item.goods_item.length}}件</view>
  54. </view>
  55. </view>
  56. <view class="hflex acenter jend cell" v-if="item.payment_status == 2">
  57. <view class="price">实付款:¥{{item.payment_amount}}</view>
  58. </view>
  59. <view class="hflex acenter jend cell">
  60. <block v-if="item.status == 2">
  61. <view class="btn1">取消订单</view>
  62. <view class="btn1 btn2">立即支付</view>
  63. </block>
  64. <block v-if="item.status == 3">
  65. <view class="btn1" @click="toApply(item.id)">申请退款</view>
  66. <view class="btn1 btn2">提醒发货</view>
  67. </block>
  68. <block v-if="item.status == 4">
  69. <view class="btn1 btn2">确认收货</view>
  70. </block>
  71. <block v-if="item.status == 5">
  72. <!-- <view class="btn1">发表评价</view> -->
  73. <view class="btn1 btn2">再次购买</view>
  74. </block>
  75. </view>
  76. </view>
  77. </block>
  78. </view>
  79. </view>
  80. </template>
  81. <script>
  82. import $api from '@/static/js/api.js'
  83. var that = ''
  84. export default {
  85. data() {
  86. return {
  87. keyword: '',
  88. tabs: [
  89. {
  90. name: '全部'
  91. },
  92. {
  93. name: '待支付'
  94. },
  95. {
  96. name: '待发货'
  97. },
  98. {
  99. name: '待收货'
  100. }
  101. ],
  102. tab_active: 0,
  103. pageList: [
  104. ]
  105. }
  106. },
  107. onLoad(options) {
  108. that = this
  109. that.tab_active = Number(options.id)
  110. that.getList()
  111. },
  112. methods: {
  113. // 返回
  114. leftClick() {
  115. console.log('返回');
  116. $api.jump(-1)
  117. },
  118. // 获取我的订单
  119. getList() {
  120. $api.req({
  121. url: '/data/api.Order/order_list',
  122. method: 'POST',
  123. data: {
  124. order_name: that.keyword?that.keyword: '',
  125. status: that.tab_active + 1
  126. }
  127. }, function(res) {
  128. if(res.code == 1) {
  129. console.log(res);
  130. that.pageList = res.data.list
  131. }
  132. })
  133. },
  134. changeTab(index) {
  135. that.tab_active = index
  136. that.pageList = []
  137. that.getList()
  138. },
  139. // 店铺
  140. toShop(id) {
  141. $api.jump('/page_shop/pages/good/shop?id=' + id)
  142. },
  143. toOrderDetail(id) {
  144. $api.jump('/page_shop/pages/order/detail?id=' + id)
  145. },
  146. // 申请退款
  147. toApply(id) {
  148. $api.jump('/page_shop/pages/order/apply?id=' + id)
  149. },
  150. search(e) {
  151. that.getList()
  152. }
  153. },
  154. }
  155. </script>
  156. <style lang="scss" scoped>
  157. .content {
  158. background: #F3F3F3;
  159. .top {
  160. box-sizing: border-box;
  161. // padding: 30rpx;
  162. // height: 540rpx;
  163. .u-nav-slot {
  164. position: absolute;
  165. top: 8rpx;
  166. left: 134rpx;
  167. }
  168. .tabs {
  169. background-color: #fff;
  170. width: 100%;
  171. box-sizing: border-box;
  172. padding: 20rpx 30rpx;
  173. .tab_item {
  174. font-size: 32rpx;
  175. font-weight: 400;
  176. color: #333333;
  177. line-height: 44rpx;
  178. }
  179. .tab_active {
  180. font-weight: 500;
  181. color: #222222;
  182. position: relative;
  183. }
  184. .tab_active::after {
  185. content: "";
  186. position: absolute;
  187. bottom: -14rpx;
  188. left: 12rpx;
  189. width: 40rpx;
  190. height: 6rpx;
  191. background: #506DFF;
  192. border-radius: 4rpx;
  193. }
  194. }
  195. }
  196. .box {
  197. width: 100%;
  198. box-sizing: border-box;
  199. padding: 0 30rpx;
  200. .box_item {
  201. background: #FFFFFF;
  202. border-radius: 20rpx;
  203. width: 100%;
  204. margin-top: 20rpx;
  205. box-sizing: border-box;
  206. padding: 0 20rpx;
  207. .cell {
  208. padding: 20rpx 0;
  209. }
  210. .title {
  211. font-size: 30rpx;
  212. font-weight: 500;
  213. color: #333333;
  214. line-height: 42rpx;
  215. }
  216. .text-blue {
  217. font-size: 26rpx;
  218. font-weight: 400;
  219. color: #506DFF;
  220. line-height: 36rpx;
  221. }
  222. .img {
  223. width: 160rpx;
  224. height: 160rpx;
  225. border-radius: 16rpx;
  226. }
  227. .img_right {
  228. margin-left: 16rpx;
  229. width: calc(100% - 176rpx);
  230. .name {
  231. width: 392rpx;
  232. font-size: 28rpx;
  233. font-weight: 500;
  234. color: #222222;
  235. line-height: 40rpx;
  236. }
  237. .norm {
  238. width: 308rpx;
  239. height: 84rpx;
  240. background: #F5F5F5;
  241. border-radius: 4rpx;
  242. font-size: 22rpx;
  243. font-weight: 400;
  244. color: #888888;
  245. line-height: 32rpx;
  246. box-sizing: border-box;
  247. padding: 12rpx;
  248. }
  249. .num {
  250. font-size: 24rpx;
  251. font-weight: 500;
  252. color: #888888;
  253. line-height: 28rpx;
  254. }
  255. }
  256. .scroll_img {
  257. position: relative;
  258. .imgs {
  259. width: 100%;
  260. height: 170rpx;
  261. overflow: hidden;
  262. white-space: nowrap;
  263. .imgs_item {
  264. width: 160rpx;
  265. height: 160rpx;
  266. border-radius: 16rpx;
  267. margin-right: 20rpx;
  268. display: inline-block;
  269. }
  270. }
  271. .img_leng {
  272. position: absolute;
  273. right: 0;
  274. top: 0;
  275. width: 130rpx;
  276. height: 160rpx;
  277. border-radius: 12rpx;
  278. font-size: 24rpx;
  279. font-weight: 500;
  280. color: #222222;
  281. line-height: 160rpx;
  282. text-align: center;
  283. background: linear-gradient(270deg, #FFFFFF 0%, rgba(255,255,255,0.78) 100%);
  284. }
  285. }
  286. .price {
  287. font-size: 30rpx;
  288. font-weight: 400;
  289. color: #222222;
  290. line-height: 24rpx;
  291. }
  292. .btn1 {
  293. width: 180rpx;
  294. height: 68rpx;
  295. border-radius: 36rpx;
  296. border: 1px solid #D0D0D0;
  297. text-align: center;
  298. font-size: 28rpx;
  299. font-weight: 400;
  300. color: #222222;
  301. line-height: 68rpx;
  302. }
  303. .btn2 {
  304. border: 1px solid #506DFF;
  305. color: #506DFF;
  306. margin-left: 32rpx;
  307. }
  308. }
  309. }
  310. .box:nth-last-child(1) {
  311. margin-bottom: 30rpx;
  312. }
  313. }
  314. </style>