deliverGoods.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. <template>
  2. <view class="page">
  3. <view class="goods-detail">
  4. <view class="order-num">
  5. <text>订单号:</text>
  6. <text>{{ orderDetail.order_no }}</text>
  7. </view>
  8. <view class="detail" v-for="item in orderDetail.goods">
  9. <image class="order-img" :src="item.goods_image" mode=""></image>
  10. <view class="detail-right">
  11. <view class="title-price">
  12. <view class="title"> {{ item.goods_name }} </view>
  13. <view class="price">
  14. <text style="font-size: 20rpx">¥</text>
  15. <text>{{ item.amount.split(".")[0] }}</text
  16. >.
  17. <text style="font-size: 20rpx">{{
  18. item.amount.split(".")[1]
  19. }}</text>
  20. </view>
  21. </view>
  22. <view class="specifications">
  23. <view class="title"> {{ item.sku_item.item }} </view>
  24. <text>x{{ item.goods_num }}</text>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="address" v-if="!isShow">
  29. <view class="name-address">
  30. {{
  31. orderDetail.address_name.split("")[0] +
  32. "**,***********," +
  33. orderDetail.full_address
  34. }}
  35. </view>
  36. <image
  37. class="eye-icon"
  38. @click="showContent"
  39. src="../../static/mine/347.png"
  40. mode=""
  41. ></image>
  42. </view>
  43. <view class="address" v-else>
  44. <view class="name-address">
  45. {{
  46. orderDetail.address_name +
  47. "," +
  48. orderDetail.address_mobile +
  49. "," +
  50. orderDetail.full_address
  51. }}
  52. </view>
  53. <u-icon name="eye" @click="showContent"></u-icon>
  54. </view>
  55. </view>
  56. <view class="express">
  57. <view class="_input-1 _input-2">
  58. <view class="_label">运单号</view>
  59. <u--input
  60. placeholder="请输入运单号或扫码获取"
  61. border="none"
  62. clearable
  63. ></u--input>
  64. <image
  65. @click="scanningNumber"
  66. class="scanning-icon"
  67. src="../../static/mine/348.png"
  68. mode=""
  69. ></image>
  70. </view>
  71. <view class="_input-1">
  72. <view class="_label">物流公司</view>
  73. <u--input
  74. placeholder="请输入物流公司"
  75. border="none"
  76. clearable
  77. ></u--input>
  78. </view>
  79. </view>
  80. <view class="footer">
  81. <button class="status-2">立即发货</button>
  82. </view>
  83. </view>
  84. </template>
  85. <script>
  86. export default {
  87. data() {
  88. return {
  89. orderDetail: {},
  90. isShow: false,
  91. };
  92. },
  93. onLoad(options) {
  94. this.getDetail(options.id);
  95. },
  96. methods: {
  97. //扫描二维码
  98. scanningNumber() {
  99. let _this = this;
  100. //获取手机权限
  101. uni.authorize({
  102. scope: "scope.camera",
  103. success() {
  104. _this.scanQrCode();
  105. },
  106. fail() {
  107. //用户拒绝授权
  108. uni.showToast({
  109. title: "您拒绝了授权",
  110. icon: "none",
  111. });
  112. },
  113. });
  114. },
  115. //扫描条形码
  116. scanQrCode() {
  117. uni.scanCode({
  118. success(res) {
  119. if (res.result) {
  120. } else {
  121. uni.showToast({
  122. title: "扫描失败",
  123. icon: "none",
  124. });
  125. }
  126. },
  127. fail() {
  128. uni.showToast({
  129. title: "调用相机失败",
  130. icon: "none",
  131. });
  132. },
  133. });
  134. },
  135. //显示隐藏内容
  136. showContent() {
  137. this.isShow = !this.isShow;
  138. },
  139. //获取页面基础信息
  140. getDetail(id) {
  141. uni.$u.http.get(`/api/order/read?id=${id}`).then((res) => {
  142. this.orderDetail = res;
  143. });
  144. },
  145. },
  146. mounted() {
  147. uni.setNavigationBarTitle({
  148. title: "立即发货",
  149. });
  150. },
  151. };
  152. </script>
  153. <style lang="scss" scoped>
  154. .page {
  155. padding: 20rpx 24rpx;
  156. .goods-detail {
  157. background-color: #fff;
  158. border-radius: 16rpx;
  159. padding: 26rpx 20rpx;
  160. .order-num {
  161. font-size: 26rpx;
  162. color: #333;
  163. }
  164. .detail {
  165. margin-top: 28rpx;
  166. display: flex;
  167. padding-bottom: 20rpx;
  168. border-bottom: 2rpx solid #f4f4f4;
  169. .order-img {
  170. width: 180rpx;
  171. height: 180rpx;
  172. border-radius: 10rpx;
  173. margin-right: 20rpx;
  174. }
  175. .detail-right {
  176. width: 70%;
  177. .title-price {
  178. display: flex;
  179. font-size: 28rpx;
  180. justify-content: space-between;
  181. align-items: center;
  182. margin-bottom: 16rpx;
  183. .title {
  184. width: 330rpx;
  185. overflow: hidden;
  186. white-space: nowrap;
  187. text-overflow: ellipsis;
  188. }
  189. }
  190. .specifications {
  191. display: flex;
  192. justify-content: space-between;
  193. align-items: center;
  194. font-size: 28rpx;
  195. color: #777;
  196. margin-top: 10rpx;
  197. .title {
  198. width: 330rpx;
  199. overflow: hidden;
  200. white-space: nowrap;
  201. text-overflow: ellipsis;
  202. }
  203. }
  204. }
  205. }
  206. .address {
  207. display: flex;
  208. align-items: center;
  209. justify-content: space-between;
  210. margin-top: 20rpx;
  211. .name-address {
  212. font-size: 26rpx;
  213. color: #333;
  214. width: 72%;
  215. }
  216. .eye-icon {
  217. width: 32rpx;
  218. height: 32rpx;
  219. }
  220. }
  221. }
  222. .express {
  223. border-radius: 16rpx;
  224. background-color: #fff;
  225. padding: 0 20rpx;
  226. margin-top: 20rpx;
  227. ._input-1 {
  228. display: flex;
  229. align-items: center;
  230. height: 100rpx;
  231. ._label {
  232. font-size: 28rpx;
  233. color: #222;
  234. margin-right: 32rpx;
  235. width: 120rpx;
  236. }
  237. .scanning-icon {
  238. width: 32rpx;
  239. height: 32rpx;
  240. }
  241. }
  242. ._input-2 {
  243. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  244. }
  245. }
  246. }
  247. .footer {
  248. position: fixed;
  249. bottom: 0;
  250. left: 0;
  251. background-color: #fff;
  252. // display: flex;
  253. // justify-content: flex-end;
  254. // align-items: center;
  255. padding-top: 20rpx;
  256. padding-bottom: 80rpx;
  257. height: 66rpx;
  258. width: 100%;
  259. .status-2 {
  260. background-color: #f83224;
  261. border-radius: 34rpx;
  262. font-size: 28rpx;
  263. color: #fff;
  264. height: 68rpx;
  265. border: 2rpx solid #f83224;
  266. margin: 0 24rpx;
  267. line-height: 68rpx;
  268. padding: 0 34rpx;
  269. }
  270. }
  271. </style>