my-order.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <!-- 我的订单 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="tab-list">
  5. <view :class="{ 'active' : isActive === index }" class="child" v-for="(item,index) in navList" :key="index"
  6. @click="checked(index)">
  7. {{item.title}}
  8. </view>
  9. </view>
  10. <view class="list">
  11. <view class="item">
  12. <view class="link-box" @tap="orderDetails">
  13. <view class="item-top">
  14. <text>限源预售</text>
  15. <text>交易成功</text>
  16. </view>
  17. <view class="item-content">
  18. <image src="../../static/img-4.png" class="product-img" mode="aspectFill"></image>
  19. <view class="item-content-sidebar">
  20. <view class="product-item-row-between">
  21. <view class="product-item-name">
  22. 冻干柠檬片 蜂蜜柠檬茶 保留鲜度96% 美白神器
  23. </view>
  24. <view class="row-end">
  25. <text class="product-item-price">¥394.00</text>
  26. <text class="product-item-num">x <text>1</text></text>
  27. </view>
  28. </view>
  29. <view class="product-item-tag">
  30. <text>一盒15g*20袋</text>
  31. <text class="status-msg">退款关闭</text>
  32. </view>
  33. <view class="product-item-msg">
  34. 7天无理由退换货
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. <view class="msg-box">
  40. <view class="freight-insurance-row">
  41. <text class="font-1">运费险</text>
  42. <text class="font-2">退换货可自动理赔</text>
  43. <text class="font-3">¥0.00 x1</text>
  44. </view>
  45. <view class="price-row">
  46. <text class="margin">总价¥<text class="big-font">29.90</text></text>
  47. <text class="margin">优惠¥<text class="big-font">1.75</text></text>
  48. <text class="margin">实付款¥<text class="big-font-black">28.15</text></text>
  49. </view>
  50. </view>
  51. <view class="item-bottom">
  52. <button type="default" @tap="addCart">加入购物车</button>
  53. <button type="default" @tap="logisticsDetails">查看物流</button>
  54. <!-- 待付款显示 -->
  55. <!-- <button type="default" class="border-gray" @tap="cancel">取消订单</button>
  56. <button type="default" class="border-red" >付款</button> -->
  57. <!-- 待发货显示 -->
  58. <!-- <button type="default" @tap="applyForInvoice">申请开票</button>
  59. <button type="default" @tap="addAddress">修改地址</button> -->
  60. <!-- 待收货显示 -->
  61. <!-- <button type="default" @tap="applyForInvoice">申请开票</button>
  62. <button type="default" @tap="logisticsDetails">查看物流</button>
  63. <button type="default" class="border-red" @tap="confirmReceipt">确认收货</button> -->
  64. <!-- 待评价显示 -->
  65. <!-- <button type="default" class="border-red" @tap="evaluation">评价</button> -->
  66. <!-- 已完成 -->
  67. <!-- <button type="default" class="border-gray" @tap="del">删除订单</button> -->
  68. </view>
  69. </view>
  70. <!-- 无内容时显示 -->
  71. <view class="normal-box">
  72. <image src="../../static/normal-3.png" mode="widthFix"></image>
  73. <text>暂无订单</text>
  74. <button type="default" @tap="go">去逛逛</button>
  75. </view>
  76. </view>
  77. </view>
  78. </template>
  79. <script>
  80. export default {
  81. data() {
  82. return {
  83. //选项卡
  84. isActive: 0,
  85. navList: [{
  86. index: 0,
  87. title: '全部',
  88. }, {
  89. index: 1,
  90. title: "待付款",
  91. }, {
  92. index: 2,
  93. title: "待发货",
  94. }, {
  95. index: 3,
  96. title: "待收货",
  97. }, {
  98. index: 4,
  99. title: "待评价",
  100. }],
  101. }
  102. },
  103. methods: {
  104. //选项卡
  105. checked(index) {
  106. this.isActive = index
  107. },
  108. //跳转订单详情
  109. orderDetails() {
  110. uni.navigateTo({
  111. url: 'order-details/order-details'
  112. })
  113. },
  114. //跳转物流详情
  115. logisticsDetails() {
  116. uni.navigateTo({
  117. url: 'logistics-details/logistics-details'
  118. })
  119. },
  120. //跳转评价
  121. evaluation() {
  122. uni.navigateTo({
  123. url: 'evaluation/evaluation'
  124. })
  125. },
  126. //跳转申请开票
  127. applyForInvoice() {
  128. uni.navigateTo({
  129. url: 'apply-for-invoice/apply-for-invoice'
  130. })
  131. },
  132. //跳转修改地址
  133. addAddress() {
  134. uni.navigateTo({
  135. url: '../my/add-address/add-address'
  136. })
  137. },
  138. // 取消订单确认弹窗
  139. cancel(){
  140. uni.showModal({
  141. title: '提示',
  142. content: '确认取消订单?',
  143. confirmColor: '#F2501A',
  144. cancelColor: '#202020',
  145. success: function (res) {
  146. if (res.confirm) {
  147. console.log('用户点击确定');
  148. } else if (res.cancel) {
  149. console.log('用户点击取消');
  150. }
  151. }
  152. });
  153. },
  154. // 删除订单确认弹窗
  155. del(){
  156. uni.showModal({
  157. title: '提示',
  158. content: '确认删除订单?',
  159. confirmColor: '#F2501A',
  160. cancelColor: '#202020',
  161. success: function (res) {
  162. if (res.confirm) {
  163. console.log('用户点击确定');
  164. } else if (res.cancel) {
  165. console.log('用户点击取消');
  166. }
  167. }
  168. });
  169. },
  170. //确认收货确认弹窗
  171. confirmReceipt(){
  172. uni.showModal({
  173. title: '提示',
  174. content: '是否确认收货?',
  175. confirmColor: '#F2501A',
  176. cancelColor: '#202020',
  177. success: function (res) {
  178. if (res.confirm) {
  179. console.log('用户点击确定');
  180. } else if (res.cancel) {
  181. console.log('用户点击取消');
  182. }
  183. }
  184. });
  185. },
  186. //加入购物车提示弹窗
  187. addCart(){
  188. uni.showToast({
  189. title: '加入购物车成功',
  190. duration: 2000
  191. });
  192. },
  193. //跳转首页
  194. go(){
  195. uni.navigateTo({
  196. url:'../index/index'
  197. })
  198. }
  199. }
  200. }
  201. </script>
  202. <style scoped>
  203. @import "./my-order.css";
  204. </style>