orderInformation.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. <template>
  2. <view class="page">
  3. <view class="top">
  4. <view class="title">
  5. 待平台收货
  6. </view>
  7. <view class="prompt">
  8. 商品已寄往平台,正在运输中
  9. </view>
  10. </view>
  11. <view class="photo" v-if="orderStauts == 1">
  12. <view class="_weight"> <text>称重重量</text> <text>168kg</text> </view>
  13. <view class="_weight"> <text>称重图片</text>
  14. <view class="_image">
  15. </view>
  16. </view>
  17. <view class="photo-bottom">
  18. <text class="_text-1">需付款</text>
  19. <view class="price">
  20. <text style="font-size: 20rpx;">¥</text>
  21. <text>133</text>.
  22. <text style="font-size: 20rpx;">22</text>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="address">
  27. <view class="name-phone">
  28. <view class="send">
  29. </view>
  30. <view class="name">
  31. 张三
  32. </view>
  33. <view class="phone">
  34. 181****1111
  35. </view>
  36. </view>
  37. <view class="address-detail">
  38. 上海市上海市浦东新区商城路1177弄5号楼201
  39. </view>
  40. <view class="name-phone">
  41. <view class="send">
  42. </view>
  43. <view class="name">
  44. Curtis Morris
  45. </view>
  46. <view class="phone">
  47. 181****1111
  48. </view>
  49. </view>
  50. <view class="address-detail _bottom">
  51. 2A Mugga Way, Red Hill ACT 2603
  52. </view>
  53. <image style="height: 4rpx;margin-bottom: 40rpx;" src="../../static/mine/338.png" mode=""></image>
  54. <view class="_label-list">
  55. <view class="information">
  56. <text class="_label">物品信息:</text>
  57. <text class="_value">日用品</text>
  58. </view>
  59. <view class="information">
  60. <text class="_label">件数:</text>
  61. <text class="_value">20</text>
  62. </view>
  63. <view class="information">
  64. <text class="_label">重量:</text>
  65. <text class="_value">200kg</text>
  66. </view>
  67. <view class="information">
  68. <text class="_label">类型:</text>
  69. <text class="_value">特殊商品</text>
  70. </view>
  71. <view>
  72. <text class="_label">跨境物流:</text>
  73. <text class="_value">海运散货 | 1号海运柜</text>
  74. </view>
  75. </view>
  76. </view>
  77. <view class="num-information">
  78. <view class="order" style="margin-bottom: 28rpx;">
  79. <text class="_label-1">订单编号</text>
  80. <view class="num">
  81. <text>ZT83829300113344</text>{{ "&nbsp;"+"|"+"&nbsp;" }}<text
  82. @click="cope('ZT83829300113344')">复制</text>
  83. </view>
  84. </view>
  85. <view class="order">
  86. <text class="_label-1">下单时间</text>
  87. <view class="num">
  88. 2023-11-24 22:31
  89. </view>
  90. </view>
  91. </view>
  92. <view class="footer">
  93. <button class="btn-1" @click="toLogistics">查看物流</button>
  94. <button class="btn-2" @click="toPay">立即付款</button>
  95. </view>
  96. </view>
  97. </template>
  98. <script>
  99. export default {
  100. data() {
  101. return {
  102. orderStauts: 1
  103. };
  104. },
  105. onLoad(options) {
  106. console.log(options)
  107. this.setStatus(options.orderStauts)
  108. },
  109. created() {
  110. //设置顶部标题栏颜色
  111. uni.setNavigationBarColor({
  112. frontColor: '#000000',
  113. backgroundColor: '#f4f4f4'
  114. })
  115. },
  116. methods: {
  117. cope(str) {
  118. uni.setClipboardData({
  119. data: str,
  120. success() {
  121. uni.showToast({
  122. title: "复制成功",
  123. icon: "none"
  124. })
  125. }
  126. })
  127. },
  128. setStatus(num){
  129. this.orderStauts = num
  130. return 11
  131. },
  132. toLogistics() {
  133. uni.navigateTo({
  134. url: "/pageD/logisticsProgress/logisticsProgress"
  135. })
  136. },
  137. toPay(){
  138. uni.navigateTo({
  139. url:"/pageD/paymentOrder/paymentOrder"
  140. })
  141. }
  142. }
  143. }
  144. </script>
  145. <style lang="scss" scoped>
  146. .page {
  147. padding: 20rpx 24rpx;
  148. position: relative;
  149. .title {
  150. font-size: 44rpx;
  151. color: #222;
  152. font-weight: 600;
  153. }
  154. .prompt {
  155. font-size: 24rpx;
  156. color: rgba(34, 34, 34, .5);
  157. margin-top: 12rpx;
  158. }
  159. .photo{
  160. background-color: #fff;
  161. border-radius: 16rpx;
  162. padding: 20rpx 20rpx;
  163. margin-top: 20rpx;
  164. ._weight{
  165. display: flex;
  166. justify-content: space-between;
  167. font-size: 26rpx;
  168. color: rgba(34, 34, 34, .8);
  169. margin-bottom: 32rpx;
  170. ._image{
  171. width: 160rpx;
  172. height: 90rpx;
  173. background-color: #D8D8D8;
  174. border-radius: 4rpx;
  175. }
  176. }
  177. .photo-bottom{
  178. display: flex;
  179. justify-content: flex-end;
  180. align-items: center;
  181. border-top: 2rpx solid rgba(151, 151, 151, .1);
  182. padding-top: 24rpx;
  183. .price{
  184. color: #f83224;
  185. font-weight: 600;
  186. }
  187. ._text-1{
  188. font-size: 26rpx;
  189. }
  190. }
  191. }
  192. .address {
  193. padding: 36rpx 34rpx;
  194. background-color: #fff;
  195. border-radius: 10rpx;
  196. margin-top: 32rpx;
  197. .name-phone {
  198. display: flex;
  199. align-items: flex-end;
  200. .send {
  201. width: 40rpx;
  202. height: 40rpx;
  203. background-color: #000;
  204. color: #fff;
  205. border-radius: 50%;
  206. font-size: 22rpx;
  207. text-align: center;
  208. line-height: 40rpx;
  209. }
  210. .name {
  211. font-weight: 600;
  212. font-size: 30rpx;
  213. color: #222;
  214. margin-right: 28rpx;
  215. margin-left: 28rpx;
  216. }
  217. .phone {
  218. font-size: 24rpx;
  219. color: #777;
  220. }
  221. }
  222. .address-detail {
  223. font-size: 26rpx;
  224. color: #555;
  225. margin-top: 16rpx;
  226. margin-left: 60rpx;
  227. padding-bottom: 36rpx;
  228. border-bottom: 2rpx solid rgba(151, 151, 151, .1);
  229. margin-bottom: 34rpx;
  230. }
  231. ._bottom {
  232. border: none;
  233. margin-bottom: 0;
  234. }
  235. ._label-list {
  236. display: flex;
  237. flex-wrap: wrap;
  238. justify-content: space-between;
  239. .information {
  240. width: 49%;
  241. margin-bottom: 28rpx;
  242. font-size: 28rpx;
  243. }
  244. ._label {
  245. color: #666;
  246. font-size: 28rpx;
  247. }
  248. ._value {
  249. font-size: 28rpx;
  250. color: #333;
  251. }
  252. }
  253. }
  254. .num-information {
  255. background-color: #fff;
  256. border-radius: 16rpx;
  257. margin-top: 20rpx;
  258. padding: 28rpx 20rpx 28rpx 28rpx;
  259. .order {
  260. display: flex;
  261. justify-content: space-between;
  262. font-size: 28rpx;
  263. ._label-1 {
  264. color: #666;
  265. }
  266. .num {
  267. color: #333;
  268. }
  269. }
  270. }
  271. .footer {
  272. display: flex;
  273. justify-content: flex-end;
  274. background-color: #fff;
  275. position: fixed;
  276. bottom: 0;
  277. left: 0;
  278. width: 100%;
  279. height: 146rpx;
  280. padding-top: 20rpx;
  281. .btn-1 {
  282. height: 76rpx;
  283. padding: 0;
  284. margin: 0;
  285. font-size: 28rpx;
  286. color: #222;
  287. min-width: 188rpx;
  288. background-color: #fff;
  289. border-radius: 38rpx;
  290. border: 2rpx solid #979797;
  291. margin-right: 20rpx;
  292. }
  293. .btn-2 {
  294. height: 76rpx;
  295. padding: 0;
  296. margin: 0;
  297. font-size: 28rpx;
  298. color: #fff;
  299. min-width: 188rpx;
  300. background-color: #f83224;
  301. border-radius: 38rpx;
  302. margin-right: 20rpx;
  303. }
  304. }
  305. }
  306. </style>