orderFormDetail.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. <template>
  2. <view class="page" @click="closeShow">
  3. <!-- 订单状态 -->
  4. <view class="title">
  5. <view v-if="status == 1">
  6. <view class="payment">
  7. 等待付款
  8. </view>
  9. <text class="timer">剩22小时52分自动关闭</text>
  10. </view>
  11. <view class="payment" v-else-if="status == 2">
  12. 超时未付款,订单已取消
  13. </view>
  14. <view class="payment" v-else-if="status == 3">
  15. 未发货,退款成功
  16. </view>
  17. <view class="payment" v-else-if="status == 4">
  18. 未发货,退款中
  19. </view>
  20. <view class="payment" v-else-if="status == 5">
  21. 拼团中
  22. </view>
  23. <view class="payment" v-else-if="status == 6">
  24. 已付款,等待发货
  25. </view>
  26. <view class="payment" v-else-if="status == 7">
  27. 已发货,等待收货
  28. </view>
  29. <view class="payment" v-else-if="status == 8">
  30. 订单已完成,交易成功
  31. </view>
  32. </view>
  33. <!-- 订单状态 -->
  34. <!-- 地址信息 -->
  35. <view class="address">
  36. <view class="name-phone">
  37. <u-icon name="map" size="22"></u-icon>
  38. <view style="margin: 0 20rpx;font-size: 32rpx;">陈曦</view>
  39. <text class="phone">17800000000</text>
  40. </view>
  41. <view class="address-detail">
  42. 江苏省淮安市清江浦区北京南路99号(青浦大桥南侧200
  43. 米)淮安恒大名都3号楼一单元1602
  44. </view>
  45. </view>
  46. <commodityDetailVue :status="status" />
  47. <view class="order">
  48. <view class="order-number">
  49. <text>
  50. 订单编号
  51. </text>
  52. <view>
  53. 8998391920137645 | <text decode @click="cope('111')">{{"&nbsp;"+"复制"}}</text>
  54. </view>
  55. </view>
  56. <view class="order-number"
  57. v-if="status == 3||status == 4||status == 5||status == 6||status == 7||status == 8">
  58. <text>
  59. 支付方式
  60. </text>
  61. <view>
  62. 微信支付
  63. </view>
  64. </view>
  65. <view class="order-number"
  66. v-if="status == 3||status == 4||status == 5||status == 6||status == 7||status == 8">
  67. <text>
  68. 支付时间
  69. </text>
  70. <view>
  71. 2023-12-08 22:40:03
  72. </view>
  73. </view>
  74. <view class="order-number">
  75. <text>
  76. 下单时间
  77. </text>
  78. <view>
  79. 2023-12-08 22:40:03
  80. </view>
  81. </view>
  82. </view>
  83. <view class="contact" v-if="status == 1||status == 6">
  84. 联系团长
  85. </view>
  86. <view class="footer" v-if="status != 6">
  87. <button class="status-1" v-if="status == 1||status == 5">取消订单</button>
  88. <button class="status-2" v-if="status == 1">继续付款</button>
  89. <button class="status-1" v-if="status == 2||status == 3||status == 4">删除订单</button>
  90. <button class="status-2" v-if="status == 2||status == 3||status == 4">再次购买</button>
  91. <button class="status-1" v-if="status == 7">查看物流</button>
  92. <button class="status-2" v-if="status == 7">确认收货</button>
  93. <view style="margin-right: 40rpx; color: #777;font-size: 28rpx;" v-if="status == 8" @click="more">更多</view>
  94. <button class="status-1" v-if="status == 8">查看物流</button>
  95. <button class="status-1" v-if="status == 8">再来一单</button>
  96. <button class="status-2" v-if="status == 8" @click.stop="toEvaluate">评价</button>
  97. </view>
  98. <u-transition :show="show">
  99. <view class="transition">删除订单</view>
  100. </u-transition>
  101. </view>
  102. </template>
  103. <script>
  104. import commodityDetailVue from './component/commodityDetail.vue'
  105. export default {
  106. components: {
  107. commodityDetailVue
  108. },
  109. data() {
  110. return {
  111. status: 6,
  112. show: false
  113. }
  114. },
  115. methods: {
  116. //复制
  117. cope(e) {
  118. uni.setClipboardData({
  119. data: e,
  120. success() {
  121. uni.showToast({
  122. title: "复制成功",
  123. icon: "none"
  124. })
  125. }
  126. })
  127. },
  128. //跳转评论
  129. toEvaluate() {
  130. uni.navigateTo({
  131. url: "/pageD/evaluate/evaluate"
  132. })
  133. },
  134. more() {
  135. this.show = true
  136. },
  137. closeShow(e) {
  138. if (e._relatedInfo.anchorTargetText != "更多" && e._relatedInfo.anchorTargetText != "删除订单") {
  139. this.show = false
  140. }
  141. }
  142. },
  143. created() {},
  144. onLoad(option) {
  145. this.status = option.orderId
  146. }
  147. }
  148. </script>
  149. <style scoped lang="scss">
  150. .page {
  151. padding: 20rpx 24rpx 180rpx;
  152. .title {
  153. .payment {
  154. font-size: 44rpx;
  155. font-weight: 600;
  156. margin-bottom: 20rpx;
  157. }
  158. .timer {
  159. font-size: 28rpx;
  160. color: #666;
  161. }
  162. }
  163. .address {
  164. background-color: #fff;
  165. border-radius: 16rpx;
  166. padding: 34rpx 24rpx 28rpx;
  167. margin-top: 24rpx;
  168. .name-phone {
  169. display: flex;
  170. align-items: center;
  171. align-items: flex-end;
  172. .phone {
  173. font-size: 26rpx;
  174. color: #666;
  175. }
  176. }
  177. .address-detail {
  178. margin-top: 20rpx;
  179. font-size: 24rpx;
  180. color: #444;
  181. margin-left: 60rpx;
  182. }
  183. }
  184. .order {
  185. background-color: #fff;
  186. border-radius: 16rpx;
  187. color: rgba(54, 54, 54, .7);
  188. font-size: 28rpx;
  189. margin-top: 20rpx;
  190. padding: 20rpx 20rpx;
  191. .order-number {
  192. display: flex;
  193. justify-content: space-between;
  194. margin-bottom: 32rpx;
  195. }
  196. }
  197. .contact {
  198. padding: 20rpx 0;
  199. background-color: #fff;
  200. display: flex;
  201. justify-content: center;
  202. align-items: center;
  203. border-radius: 16rpx;
  204. margin-top: 20rpx;
  205. margin-bottom: 160rpx;
  206. }
  207. .footer {
  208. position: fixed;
  209. bottom: 0;
  210. left: 0;
  211. background-color: #fff;
  212. display: flex;
  213. justify-content: flex-end;
  214. align-items: center;
  215. padding-top: 20rpx;
  216. padding-bottom: 80rpx;
  217. height: 66rpx;
  218. width: 100%;
  219. .status-1 {
  220. background-color: #fff;
  221. border-radius: 34rpx;
  222. margin: 0;
  223. padding: 0;
  224. font-size: 28rpx;
  225. color: #222;
  226. width: 168rpx;
  227. height: 68rpx;
  228. margin-right: 20rpx;
  229. border: 2rpx solid #979797;
  230. }
  231. .status-2 {
  232. background-color: #ffffff;
  233. border-radius: 34rpx;
  234. margin: 0;
  235. padding: 0;
  236. font-size: 28rpx;
  237. color: #f83224;
  238. width: 168rpx;
  239. height: 68rpx;
  240. border: 2rpx solid #f83224;
  241. margin-right: 24rpx;
  242. }
  243. }
  244. .transition {
  245. width: 164rpx;
  246. height: 88rpx;
  247. background: #FFFFFF;
  248. box-shadow: 0rpx 0rpx 20rpx -6rpx rgba(0, 0, 0, 0.3);
  249. position: fixed;
  250. bottom: 160rpx;
  251. text-align: center;
  252. line-height: 88rpx;
  253. font-size: 26rpx;
  254. color: #222;
  255. }
  256. }
  257. </style>