deliverGoods.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <template>
  2. <view class="page">
  3. <view class="goods-detail">
  4. <view class="order-num">
  5. <text>订单号:</text>
  6. <text>Cbz20220809122323456</text>
  7. </view>
  8. <view class="detail">
  9. <image class="order-img"
  10. src="https://img12.360buyimg.com/jdcms/s460x460_jfs/t1/226637/16/19995/180517/66696f86Fa90c7d49/3bc094e1eb7aeb12.jpg.avif"
  11. mode=""></image>
  12. <view class="detail-right">
  13. <view class="title-price">
  14. <view class="title">
  15. OATLY噢麦力 咖啡大师…
  16. </view>
  17. <view class="price">
  18. <text style="font-size: 20rpx;">¥</text>
  19. <text>133</text>.
  20. <text style="font-size: 20rpx;">22</text>
  21. </view>
  22. </view>
  23. <view class="specifications">
  24. <view class="title">
  25. 咖啡大师燕麦奶250ml*6瓶
  26. </view>
  27. <text>x1</text>
  28. </view>
  29. </view>
  30. </view>
  31. <view class="address">
  32. <view class="name-address">
  33. 张**,***********,河北省保定区莲池区未来石*********
  34. </view>
  35. <image class="eye-icon" src="../../static/mine/347.png" mode=""></image>
  36. </view>
  37. </view>
  38. <view class="express">
  39. <view class="_input-1 _input-2">
  40. <view class="_label">运单号</view>
  41. <u--input placeholder="请输入运单号或扫码获取" border="none" clearable></u--input>
  42. <image @click="scanningNumber" class="scanning-icon" src="../../static/mine/348.png" mode=""></image>
  43. </view>
  44. <view class="_input-1">
  45. <view class="_label">物流公司</view>
  46. <u--input placeholder="请输入物流公司" border="none" clearable></u--input>
  47. </view>
  48. </view>
  49. </view>
  50. </template>
  51. <script>
  52. export default {
  53. data() {
  54. return {
  55. };
  56. },
  57. methods:{
  58. //扫描二维码
  59. scanningNumber(){
  60. //获取手机权限
  61. uni.authorize({
  62. scope:"scope.camera",
  63. success() {
  64. scanQrCode()
  65. },
  66. fail() {
  67. //用户拒绝授权
  68. uni.showToast({
  69. title:"您拒绝了授权",
  70. icon:'none'
  71. })
  72. }
  73. })
  74. },
  75. scanQrCode(){
  76. uni.scanCode({
  77. success(res) {
  78. if(res.result){
  79. console.log(111)
  80. }else{
  81. uni.showToast({
  82. title:"扫描失败",
  83. icon:"none"
  84. })
  85. }
  86. },
  87. fail() {
  88. uni.showToast({
  89. title:"调用相机失败",
  90. icon:'none'
  91. })
  92. }
  93. })
  94. }
  95. },
  96. mounted() {
  97. uni.setNavigationBarTitle({
  98. title: "立即发货"
  99. })
  100. }
  101. }
  102. </script>
  103. <style lang="scss" scoped>
  104. .page {
  105. padding: 20rpx 24rpx;
  106. .goods-detail {
  107. background-color: #fff;
  108. border-radius: 16rpx;
  109. padding: 26rpx 20rpx;
  110. .order-num {
  111. font-size: 26rpx;
  112. color: #333;
  113. }
  114. .detail {
  115. margin-top: 28rpx;
  116. display: flex;
  117. padding-bottom: 20rpx;
  118. border-bottom: 2rpx solid #F4F4F4;
  119. .order-img {
  120. width: 180rpx;
  121. height: 180rpx;
  122. border-radius: 10rpx;
  123. margin-right: 20rpx;
  124. }
  125. .detail-right {
  126. width: 70%;
  127. .title-price {
  128. display: flex;
  129. font-size: 28rpx;
  130. justify-content: space-between;
  131. align-items: center;
  132. margin-bottom: 16rpx;
  133. .title {
  134. width: 330rpx;
  135. overflow: hidden;
  136. white-space: nowrap;
  137. text-overflow: ellipsis;
  138. }
  139. }
  140. .specifications {
  141. display: flex;
  142. justify-content: space-between;
  143. align-items: center;
  144. font-size: 28rpx;
  145. color: #777;
  146. margin-top: 10rpx;
  147. .title {
  148. width: 330rpx;
  149. overflow: hidden;
  150. white-space: nowrap;
  151. text-overflow: ellipsis;
  152. }
  153. }
  154. }
  155. }
  156. .address{
  157. display: flex;
  158. align-items: center;
  159. justify-content: space-between;
  160. margin-top: 20rpx;
  161. .name-address{
  162. font-size: 26rpx;
  163. color: #333;
  164. width: 72%;
  165. }
  166. .eye-icon{
  167. width: 32rpx;
  168. height: 32rpx;
  169. }
  170. }
  171. }
  172. .express {
  173. border-radius: 16rpx;
  174. background-color: #fff;
  175. padding: 0 20rpx;
  176. margin-top: 20rpx;
  177. ._input-1 {
  178. display: flex;
  179. align-items: center;
  180. height: 100rpx;
  181. ._label{
  182. font-size: 28rpx;
  183. color: #222;
  184. margin-right: 32rpx;
  185. width: 120rpx;
  186. }
  187. .scanning-icon{
  188. width: 32rpx;
  189. height: 32rpx;
  190. }
  191. }
  192. ._input-2{
  193. border-bottom: 2rpx solid rgba(151, 151, 151, .1);
  194. }
  195. }
  196. }
  197. </style>