list.vue 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  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.name}}</view>
  21. <u-icon color="#B5B5B5" name="arrow-right" size="10"></u-icon>
  22. </view>
  23. <view class="text-blue">{{item.stateName}}</view>
  24. </view>
  25. <view @click="toOrderDetail(item.id)">
  26. <view class="hflex acenter" v-if="item.good.length == 1">
  27. <view>
  28. <image :src="item.good[0].img" mode="aspectFill" class="img"></image>
  29. </view>
  30. <view class="img_right">
  31. <view class="hflex acenter jbetween">
  32. <view class="name text_hide">{{item.good[0].name}}</view>
  33. <view class="price">¥{{item.good[0].price}}</view>
  34. </view>
  35. <view class="hflex jbetween" style="padding-top: 12rpx;">
  36. <view class="norm">{{item.good[0].norm}}</view>
  37. <view class="num">X{{item.good[0].num}}</view>
  38. </view>
  39. </view>
  40. </view>
  41. <view class="scroll_img" v-else>
  42. <scroll-view scroll-x="true" style="white-space: nowrap;" class="imgs hflex">
  43. <block v-for="(item2,index2) in item.good" :key="index2">
  44. <view class="imgs_item">
  45. <image :src="item2.img" class="img"></image>
  46. </view>
  47. </block>
  48. </scroll-view>
  49. <view class="img_leng">共{{item.good.length}}件</view>
  50. </view>
  51. </view>
  52. <view class="hflex acenter jend cell">
  53. <view class="price">实付款:¥{{item.pay}}</view>
  54. </view>
  55. <view class="hflex acenter jend cell">
  56. <block v-if="item.state == 0">
  57. <view class="btn1">取消订单</view>
  58. <view class="btn1 btn2">立即支付</view>
  59. </block>
  60. <block v-if="item.state == 1">
  61. <view class="btn1" @click="toApply(item.id)">申请退款</view>
  62. <view class="btn1 btn2">提醒发货</view>
  63. </block>
  64. <block v-if="item.state == 2">
  65. <view class="btn1 btn2">确认收货</view>
  66. </block>
  67. <block v-if="item.state == 3">
  68. <!-- <view class="btn1">发表评价</view> -->
  69. <view class="btn1 btn2">再次购买</view>
  70. </block>
  71. </view>
  72. </view>
  73. </block>
  74. </view>
  75. </view>
  76. </template>
  77. <script>
  78. import $api from '@/static/js/api.js'
  79. var that = ''
  80. export default {
  81. data() {
  82. return {
  83. keyword: '',
  84. tabs: [
  85. {
  86. name: '全部'
  87. },
  88. {
  89. name: '待支付'
  90. },
  91. {
  92. name: '待发货'
  93. },
  94. {
  95. name: '待收货'
  96. }
  97. ],
  98. tab_active: 0,
  99. pageList: [
  100. {
  101. id: 1,
  102. name: '江南造船厂',
  103. state: 0,
  104. stateName: '待支付',
  105. good: [
  106. {
  107. id:2,
  108. img: '/static/images/index/class_img3.png',
  109. name: 'wanpy顽皮鲜封包猫咪鸡胸…',
  110. price: 29.90,
  111. norm: '网络类型:无需合约机;颜色:黑色;尺寸:12寸;配置:128G',
  112. num: 1,
  113. }
  114. ],
  115. pay: 29.90
  116. },
  117. {
  118. id: 3,
  119. name: '福东海官方自营旗舰店',
  120. state: 1,
  121. stateName: '待发货',
  122. good: [
  123. {
  124. id:2,
  125. img: '/static/images/index/class_img3.png',
  126. name: 'wanpy顽皮鲜封包猫咪鸡胸…',
  127. price: 29.90,
  128. norm: '网络类型:无需合约机;颜色:黑色;尺寸:12寸;配置:128G',
  129. num: 1,
  130. },
  131. {
  132. id:2,
  133. img: '/static/images/index/class_img3.png',
  134. name: 'wanpy顽皮鲜封包猫咪鸡胸…',
  135. price: 29.90,
  136. norm: '网络类型:无需合约机;颜色:黑色;尺寸:12寸;配置:128G',
  137. num: 1,
  138. },
  139. {
  140. id:2,
  141. img: '/static/images/index/class_img3.png',
  142. name: 'wanpy顽皮鲜封包猫咪鸡胸…',
  143. price: 29.90,
  144. norm: '网络类型:无需合约机;颜色:黑色;尺寸:12寸;配置:128G',
  145. num: 1,
  146. },
  147. {
  148. id:2,
  149. img: '/static/images/index/class_img3.png',
  150. name: 'wanpy顽皮鲜封包猫咪鸡胸…',
  151. price: 29.90,
  152. norm: '网络类型:无需合约机;颜色:黑色;尺寸:12寸;配置:128G',
  153. num: 1,
  154. }
  155. ],
  156. pay: 29.90
  157. },
  158. {
  159. id: 4,
  160. name: '江南造船厂',
  161. state: 2,
  162. stateName: '待收货',
  163. good: [
  164. {
  165. id:2,
  166. img: '/static/images/index/class_img3.png',
  167. name: 'wanpy顽皮鲜封包猫咪鸡胸…',
  168. price: 29.90,
  169. norm: '网络类型:无需合约机;颜色:黑色;尺寸:12寸;配置:128G',
  170. num: 1,
  171. }
  172. ],
  173. pay: 29.90
  174. },
  175. {
  176. id: 5,
  177. name: '江南造船厂',
  178. state: 3,
  179. stateName: '已完成',
  180. good: [
  181. {
  182. id:2,
  183. img: '/static/images/index/class_img3.png',
  184. name: 'wanpy顽皮鲜封包猫咪鸡胸…',
  185. price: 29.90,
  186. norm: '网络类型:无需合约机;颜色:黑色;尺寸:12寸;配置:128G',
  187. num: 1,
  188. }
  189. ],
  190. pay: 29.90
  191. },
  192. ]
  193. }
  194. },
  195. onLoad(options) {
  196. that = this
  197. that.tab_active = options.id
  198. that.getList()
  199. },
  200. methods: {
  201. // 返回
  202. leftClick() {
  203. console.log('返回');
  204. $api.jump(-1)
  205. },
  206. // 获取我的订单
  207. getList() {
  208. $api.req({
  209. url: '/data/api.Order/order_list',
  210. data: {
  211. order_name: that.keyword?that.keyword: '',
  212. status: that.tab_active
  213. }
  214. }, function(res) {
  215. if(res.code == 1) {
  216. console.log(res);
  217. }
  218. })
  219. },
  220. changeTab(index) {
  221. that.tab_active = index
  222. },
  223. // 店铺
  224. toShop(id) {
  225. $api.jump('/page_shop/pages/good/shop?id=' + id)
  226. },
  227. toOrderDetail(id) {
  228. $api.jump('/page_shop/pages/order/detail?id=' + id)
  229. },
  230. // 申请退款
  231. toApply(id) {
  232. $api.jump('/page_shop/pages/order/apply?id=' + id)
  233. },
  234. search(e) {
  235. that.getList()
  236. }
  237. },
  238. }
  239. </script>
  240. <style lang="scss" scoped>
  241. .content {
  242. background: #F3F3F3;
  243. .top {
  244. box-sizing: border-box;
  245. // padding: 30rpx;
  246. // height: 540rpx;
  247. .u-nav-slot {
  248. position: absolute;
  249. top: 8rpx;
  250. left: 134rpx;
  251. }
  252. .tabs {
  253. background-color: #fff;
  254. width: 100%;
  255. box-sizing: border-box;
  256. padding: 20rpx 30rpx;
  257. .tab_item {
  258. font-size: 32rpx;
  259. font-weight: 400;
  260. color: #333333;
  261. line-height: 44rpx;
  262. }
  263. .tab_active {
  264. font-weight: 500;
  265. color: #222222;
  266. position: relative;
  267. }
  268. .tab_active::after {
  269. content: "";
  270. position: absolute;
  271. bottom: -14rpx;
  272. left: 12rpx;
  273. width: 40rpx;
  274. height: 6rpx;
  275. background: #506DFF;
  276. border-radius: 4rpx;
  277. }
  278. }
  279. }
  280. .box {
  281. width: 100%;
  282. box-sizing: border-box;
  283. padding: 0 30rpx;
  284. .box_item {
  285. background: #FFFFFF;
  286. border-radius: 20rpx;
  287. width: 100%;
  288. margin-top: 20rpx;
  289. box-sizing: border-box;
  290. padding: 0 20rpx;
  291. .cell {
  292. padding: 20rpx 0;
  293. }
  294. .title {
  295. font-size: 30rpx;
  296. font-weight: 500;
  297. color: #333333;
  298. line-height: 42rpx;
  299. }
  300. .text-blue {
  301. font-size: 26rpx;
  302. font-weight: 400;
  303. color: #506DFF;
  304. line-height: 36rpx;
  305. }
  306. .img {
  307. width: 160rpx;
  308. height: 160rpx;
  309. border-radius: 16rpx;
  310. }
  311. .img_right {
  312. margin-left: 16rpx;
  313. width: calc(100% - 176rpx);
  314. .name {
  315. width: 392rpx;
  316. font-size: 28rpx;
  317. font-weight: 500;
  318. color: #222222;
  319. line-height: 40rpx;
  320. }
  321. .norm {
  322. width: 308rpx;
  323. height: 84rpx;
  324. background: #F5F5F5;
  325. border-radius: 4rpx;
  326. font-size: 22rpx;
  327. font-weight: 400;
  328. color: #888888;
  329. line-height: 32rpx;
  330. box-sizing: border-box;
  331. padding: 12rpx;
  332. }
  333. .num {
  334. font-size: 24rpx;
  335. font-weight: 500;
  336. color: #888888;
  337. line-height: 28rpx;
  338. }
  339. }
  340. .scroll_img {
  341. position: relative;
  342. .imgs {
  343. width: 100%;
  344. height: 170rpx;
  345. overflow: hidden;
  346. white-space: nowrap;
  347. .imgs_item {
  348. width: 160rpx;
  349. height: 160rpx;
  350. border-radius: 16rpx;
  351. margin-right: 20rpx;
  352. display: inline-block;
  353. }
  354. }
  355. .img_leng {
  356. position: absolute;
  357. right: 0;
  358. top: 0;
  359. width: 130rpx;
  360. height: 160rpx;
  361. border-radius: 12rpx;
  362. font-size: 24rpx;
  363. font-weight: 500;
  364. color: #222222;
  365. line-height: 160rpx;
  366. text-align: center;
  367. background: linear-gradient(270deg, #FFFFFF 0%, rgba(255,255,255,0.78) 100%);
  368. }
  369. }
  370. .price {
  371. font-size: 30rpx;
  372. font-weight: 400;
  373. color: #222222;
  374. line-height: 24rpx;
  375. }
  376. .btn1 {
  377. width: 180rpx;
  378. height: 68rpx;
  379. border-radius: 36rpx;
  380. border: 1px solid #D0D0D0;
  381. text-align: center;
  382. font-size: 28rpx;
  383. font-weight: 400;
  384. color: #222222;
  385. line-height: 68rpx;
  386. }
  387. .btn2 {
  388. border: 1px solid #506DFF;
  389. color: #506DFF;
  390. margin-left: 32rpx;
  391. }
  392. }
  393. }
  394. .box:nth-last-child(1) {
  395. margin-bottom: 30rpx;
  396. }
  397. }
  398. </style>