send.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. <template>
  2. <view class="content">
  3. <view class="center">
  4. <view class="box">
  5. <view>
  6. <view class="box_no">订单号:<span style="font-weight: 600;">{{pageData.order_no}}</span></view>
  7. <block v-for="(item,index) in pageData.goods_item" :key="index">
  8. <view class="items hflex acenter">
  9. <image :src="item.goods_cover" class="item-img"></image>
  10. <view class="item-right">
  11. <view class="hflex acenter jbetween">
  12. <view class="item_name text_hide">{{item.goods_name}}</view>
  13. <view class="item_price">¥<span style="font-size: 30rpx;">{{item.price_selling}}</span></view>
  14. </view>
  15. <view class="hflex jbetween" style="padding: 20rpx 0 0;">
  16. <view class="norm text_hide">{{item.goods_spec}}</view>
  17. <view class="left_text">X{{item.stock_sales}}</view>
  18. </view>
  19. </view>
  20. </view>
  21. </block>
  22. <view class="addr hflex jbetween">
  23. <view class="addr_left">{{address}}</view>
  24. <image src="/static/images/common/biyanjing.png" style="width: 32rpx;height: 32rpx;" v-if="!address_show" @click="showAddr"></image>
  25. <image src="/static/images/common/yanjing.png" style="width: 32rpx;height: 32rpx;" v-else @click="showAddr"></image>
  26. </view>
  27. </view>
  28. </view>
  29. <view class="box">
  30. <view class="cell2 hflex acenter jbetween">
  31. <view class="left">运单号</view>
  32. <u-input v-model="express_no" border="none" placeholder="请输入运单号或扫码获取"></u-input>
  33. <image src="/static/images/common/saoyisao.png" style="width: 32rpx;height: 32rpx;" @click="scan"></image>
  34. </view>
  35. <view class="cell2 hflex acenter jbetween">
  36. <view class="left">物流公司</view>
  37. <u-input v-model="express_name" border="none" placeholder="请输入物流公司"></u-input>
  38. <view></view>
  39. </view>
  40. </view>
  41. <view class="box">
  42. <view class="hflex jbetween cell3" @click="selectAddr('send')">
  43. <view class="label">发货地址</view>
  44. <view class="hflex acenter">
  45. <view class="text">{{send_addr}}</view>
  46. <u-icon name="arrow-right" size="12" color="#888"></u-icon>
  47. </view>
  48. </view>
  49. <!-- <view class="hflex jbetween cell3" @click="selectAddr('send')">
  50. <view class="label">退货地址</view>
  51. <view class="hflex acenter">
  52. <view class="text">{{send_addr}}</view>
  53. <u-icon name="arrow-right" size="12" color="#888"></u-icon>
  54. </view>
  55. </view> -->
  56. </view>
  57. </view>
  58. <view class="bottom">
  59. <view class="btn hflex acenter jcenter" @click="send">立即发货</view>
  60. </view>
  61. </view>
  62. </template>
  63. <script>
  64. import $api from '@/static/js/api.js'
  65. var that = ''
  66. export default {
  67. data() {
  68. return {
  69. id: '',
  70. pageData: {},
  71. address: '',
  72. address_show: false,
  73. express_no: '',
  74. express_name:'',
  75. send_addr: '',
  76. return_addr: {}
  77. }
  78. },
  79. onLoad(options) {
  80. that = this
  81. that.id = options.id
  82. that.getData()
  83. },
  84. methods: {
  85. getData() {
  86. $api.req({
  87. url: '/data/api.business.Order/order_info',
  88. method: 'POST',
  89. data: {
  90. order_id: that.id
  91. }
  92. }, function(res) {
  93. if(res.code == 1) {
  94. that.pageData = res.data
  95. if(that.address_show) {
  96. that.address = that.pageData.user_address.address_name+ ',' + that.pageData.user_address.address_phone +',' +that.pageData.user_address.address_province+that.pageData.user_address.address_city+that.pageData.user_address.address_area+ that.pageData.user_address.address_content
  97. } else {
  98. that.address = that.pageData.user_address.address_name.slice(0,1)+ '**,' +'***********,' +that.pageData.user_address.address_province+that.pageData.user_address.address_city+that.pageData.user_address.address_area+ that.pageData.user_address.address_content.slice(0,5) + '******'
  99. }
  100. }
  101. })
  102. },
  103. showAddr() {
  104. that.address_show = !that.address_show
  105. if(that.address_show) {
  106. that.address = that.pageData.user_address.address_name+ ',' + that.pageData.user_address.address_phone +',' +that.pageData.user_address.address_province+that.pageData.user_address.address_city+that.pageData.user_address.address_area+ that.pageData.user_address.address_content
  107. } else {
  108. that.address = that.pageData.user_address.address_name.slice(0,1)+ '**,' +'***********,' +that.pageData.user_address.address_province+that.pageData.user_address.address_city+that.pageData.user_address.address_area+ that.pageData.user_address.address_content.slice(0,5) + '******'
  109. }
  110. },
  111. scan() {
  112. uni.scanCode({
  113. success: function (res) {
  114. that.express_no = res.result
  115. // console.log('条码类型:' + res.scanType);
  116. // console.log('条码内容:' + res.result);
  117. }
  118. });
  119. },
  120. selectAddr(select) {
  121. $api.jump('/pages/mine/service/address/address?select=' + select)
  122. },
  123. send() {
  124. $api.req({
  125. url: '/data/api.business.Order/order_send',
  126. method: 'POST',
  127. data: {
  128. order_no: that.pageData.order_no,
  129. send_number: that.express_no,
  130. company_name: that.express_name,
  131. name: that.return_addr.name,
  132. phone: that.return_addr.phone,
  133. province: that.return_addr.province,
  134. city: that.return_addr.city,
  135. area: that.return_addr.area,
  136. address: that.return_addr.address,
  137. }
  138. }, function(res) {
  139. if(res.code == 1) {
  140. $api.info(res.info)
  141. $api.jump(-1)
  142. }
  143. })
  144. },
  145. },
  146. }
  147. </script>
  148. <style lang="scss" scoped>
  149. .content {
  150. background: #F4F4F4;
  151. .center {
  152. width: 100%;
  153. box-sizing: border-box;
  154. padding: 0 30rpx;
  155. .box {
  156. margin-top: 20rpx;
  157. width: 100%;
  158. box-sizing: border-box;
  159. padding: 0 20rpx;
  160. background: #FFFFFF;
  161. border-radius: 20rpx;
  162. .box_no {
  163. padding: 28rpx 0;
  164. font-size: 26rpx;
  165. font-weight: 400;
  166. color: #333333;
  167. line-height: 36rpx;
  168. }
  169. .cell {
  170. padding-bottom: 24rpx;
  171. .left {
  172. width: 240rpx;
  173. font-size: 26rpx;
  174. font-weight: 400;
  175. color: #222222;
  176. line-height: 36rpx;
  177. }
  178. .right {
  179. font-size: 26rpx;
  180. font-weight: 400;
  181. color: #555555;
  182. line-height: 36rpx;
  183. }
  184. .right1 {
  185. font-size: 26rpx;
  186. font-weight: 400;
  187. color: #333333;
  188. line-height: 36rpx;
  189. }
  190. }
  191. .items {
  192. padding: 20rpx 0 32rpx;
  193. border-bottom: 1rpx solid #F4F4F4;
  194. .item-img {
  195. width: 160rpx;
  196. height: 160rpx;
  197. border-radius: 24rpx;
  198. }
  199. .item-right {
  200. width:calc(100% - 160rpx);
  201. padding-left: 20rpx;
  202. .item_name {
  203. font-size: 30rpx;
  204. font-weight: 400;
  205. color: #222222;
  206. line-height: 42rpx;
  207. }
  208. .item_price {
  209. font-size: 20rpx;
  210. font-weight: 600;
  211. color: #222222;
  212. line-height: 24rpx;
  213. }
  214. .norm {
  215. max-width: 300rpx;
  216. width: max-content;
  217. // height: 42px;
  218. background: #F5F5F5;
  219. border-radius: 12rpx;
  220. box-sizing: border-box;
  221. padding: 12rpx;
  222. font-size: 20rpx;
  223. font-weight: 400;
  224. color: #888888;
  225. line-height: 28rpx;
  226. }
  227. .left_text {
  228. font-size: 24rpx;
  229. font-weight: 500;
  230. color: #888888;
  231. line-height: 28rpx;
  232. }
  233. }
  234. }
  235. .addr {
  236. padding: 24rpx 0 26rpx;
  237. .addr_left {
  238. width: 492rpx;
  239. font-size: 26rpx;
  240. font-weight: 400;
  241. color: #333333;
  242. line-height: 36rpx;
  243. }
  244. }
  245. .cell2 {
  246. padding: 28rpx 0;
  247. border-bottom: 1rpx solid #F4F4F4;
  248. .left {
  249. width: 186rpx;
  250. font-size: 30rpx;
  251. font-weight: 600;
  252. color: #333333;
  253. line-height: 42rpx;
  254. }
  255. }
  256. .cell2:nth-last-child(1) {
  257. border: none;
  258. }
  259. .cell3 {
  260. padding: 36rpx 0 32rpx;
  261. .label {
  262. width: 186rpx;
  263. font-size: 30rpx;
  264. font-weight: 600;
  265. color: #333333;
  266. line-height: 42rpx;
  267. }
  268. .text {
  269. font-size: 28rpx;
  270. font-weight: 400;
  271. color: #333333;
  272. line-height: 40rpx;
  273. }
  274. }
  275. }
  276. }
  277. .bottom {
  278. width: 100%;
  279. height: 166rpx;
  280. background: #FFFFFF;
  281. box-sizing: border-box;
  282. padding: 0 30rpx;
  283. position: fixed;
  284. z-index: 99;
  285. bottom: 0;
  286. .btn {
  287. margin-top: 16rpx;
  288. width: 100%;
  289. height: 84rpx;
  290. background: #506DFF;
  291. border-radius: 42rpx;
  292. font-size: 36rpx;
  293. font-weight: 500;
  294. color: #FFFFFF;
  295. line-height: 50rpx;
  296. }
  297. }
  298. }
  299. </style>