deliverGoods.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  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.sku_item.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. v-model="code"
  63. clearable
  64. ></u--input>
  65. <image
  66. @click="scanningNumber"
  67. class="scanning-icon"
  68. src="../../static/mine/348.png"
  69. mode=""
  70. ></image>
  71. </view>
  72. <view class="_input-1" @click="openSelect">
  73. <view class="_label">物流公司</view>
  74. <u--input
  75. placeholder="请输入物流公司"
  76. border="none"
  77. v-model="name"
  78. @change="searchExpress"
  79. clearable
  80. ></u--input>
  81. <SelectExpress
  82. :show="nameShow"
  83. :filterList="filterList"
  84. @selected="selected"
  85. className="order-manage"
  86. />
  87. </view>
  88. </view>
  89. <view class="footer">
  90. <button class="status-2" @click="immediateDelivery">立即发货</button>
  91. </view>
  92. </view>
  93. </template>
  94. <script>
  95. import SelectExpress from "../components/selectExpress.vue";
  96. export default {
  97. components: {
  98. SelectExpress,
  99. },
  100. data() {
  101. return {
  102. orderDetail: {},
  103. isShow: false,
  104. code: "", //物流单号
  105. name: "", //物流公司名称
  106. nameShow: false, //选择物流公司弹窗
  107. expressCode: "", //选中的快递公司编号
  108. filterList: [],
  109. expressNameList: [], //快递公司
  110. };
  111. },
  112. onLoad(options) {
  113. this.getDetail(options.id);
  114. },
  115. methods: {
  116. //扫描二维码
  117. scanningNumber() {
  118. let _this = this;
  119. //获取手机权限
  120. uni.authorize({
  121. scope: "scope.camera",
  122. success() {
  123. _this.scanQrCode();
  124. },
  125. fail() {
  126. //用户拒绝授权
  127. uni.showToast({
  128. title: "您拒绝了授权",
  129. icon: "none",
  130. });
  131. },
  132. });
  133. },
  134. //打开下拉
  135. openSelect() {
  136. this.nameShow = true;
  137. },
  138. //过滤搜索结果
  139. searchExpress(e) {
  140. if (!e) {
  141. this.expressCode = "";
  142. }
  143. this.filterList = this.expressNameList
  144. .filter((item) => item.name.includes(e))
  145. .map((item) => item);
  146. },
  147. //获取所有的快递公司
  148. getExpressNameList() {
  149. uni.$u.http.get(`/api/express-company`).then((res) => {
  150. this.expressNameList = res;
  151. this.filterList = res;
  152. });
  153. },
  154. //获取选中的快递公司
  155. selected(value) {
  156. this.name = value.name;
  157. this.expressCode = value.code;
  158. this.nameShow = false;
  159. },
  160. //团长发货
  161. immediateDelivery() {
  162. if (this.nameShow || !this.expressCode) {
  163. uni.showToast({
  164. title: "请选择物流公司",
  165. icon: "none",
  166. });
  167. return;
  168. }
  169. uni.$u.http
  170. .post(`/api/order/merchant_delivery`, {
  171. order_id: this.orderDetail.id,
  172. delivery_no: this.code,
  173. company_code: this.expressCode,
  174. })
  175. .then((res) => {
  176. uni.showToast({
  177. title: "已发货",
  178. icon: "none",
  179. });
  180. let timer = setTimeout(() => {
  181. uni.navigateBack({
  182. delta: 1,
  183. });
  184. clearTimeout(timer);
  185. }, 1000);
  186. });
  187. },
  188. //扫描条形码
  189. scanQrCode() {
  190. uni.scanCode({
  191. success(res) {
  192. if (res.result) {
  193. } else {
  194. uni.showToast({
  195. title: "扫描失败",
  196. icon: "none",
  197. });
  198. }
  199. },
  200. fail() {
  201. uni.showToast({
  202. title: "调用相机失败",
  203. icon: "none",
  204. });
  205. },
  206. });
  207. },
  208. //显示隐藏内容
  209. showContent() {
  210. this.isShow = !this.isShow;
  211. },
  212. //获取页面基础信息
  213. getDetail(id) {
  214. uni.$u.http.get(`/api/order/read?id=${id}`).then((res) => {
  215. this.orderDetail = res;
  216. });
  217. },
  218. },
  219. mounted() {
  220. this.getExpressNameList();
  221. uni.setNavigationBarTitle({
  222. title: "立即发货",
  223. });
  224. },
  225. };
  226. </script>
  227. <style lang="scss" scoped>
  228. .page {
  229. padding: 20rpx 24rpx;
  230. padding-bottom: 186rpx;
  231. .goods-detail {
  232. background-color: #fff;
  233. border-radius: 16rpx;
  234. padding: 26rpx 20rpx;
  235. .order-num {
  236. font-size: 26rpx;
  237. color: #333;
  238. }
  239. .detail {
  240. margin-top: 28rpx;
  241. display: flex;
  242. padding-bottom: 20rpx;
  243. border-bottom: 2rpx solid #f4f4f4;
  244. .order-img {
  245. width: 180rpx;
  246. height: 180rpx;
  247. border-radius: 10rpx;
  248. margin-right: 20rpx;
  249. }
  250. .detail-right {
  251. width: 70%;
  252. .title-price {
  253. display: flex;
  254. font-size: 28rpx;
  255. justify-content: space-between;
  256. align-items: center;
  257. margin-bottom: 16rpx;
  258. .title {
  259. width: 330rpx;
  260. overflow: hidden;
  261. white-space: nowrap;
  262. text-overflow: ellipsis;
  263. }
  264. }
  265. .specifications {
  266. display: flex;
  267. justify-content: space-between;
  268. align-items: center;
  269. font-size: 28rpx;
  270. color: #777;
  271. margin-top: 10rpx;
  272. .title {
  273. width: 330rpx;
  274. overflow: hidden;
  275. white-space: nowrap;
  276. text-overflow: ellipsis;
  277. }
  278. }
  279. }
  280. }
  281. .address {
  282. display: flex;
  283. align-items: center;
  284. justify-content: space-between;
  285. margin-top: 20rpx;
  286. .name-address {
  287. font-size: 26rpx;
  288. color: #333;
  289. width: 72%;
  290. }
  291. .eye-icon {
  292. width: 32rpx;
  293. height: 32rpx;
  294. }
  295. }
  296. }
  297. .express {
  298. border-radius: 16rpx;
  299. background-color: #fff;
  300. padding: 0 20rpx;
  301. margin-top: 20rpx;
  302. ._input-1 {
  303. display: flex;
  304. align-items: center;
  305. height: 100rpx;
  306. position: relative;
  307. ._label {
  308. font-size: 28rpx;
  309. color: #222;
  310. margin-right: 32rpx;
  311. width: 120rpx;
  312. }
  313. .scanning-icon {
  314. width: 32rpx;
  315. height: 32rpx;
  316. }
  317. }
  318. ._input-2 {
  319. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  320. }
  321. }
  322. }
  323. .footer {
  324. position: fixed;
  325. bottom: 0;
  326. left: 0;
  327. background-color: #fff;
  328. // display: flex;
  329. // justify-content: flex-end;
  330. // align-items: center;
  331. padding-top: 20rpx;
  332. padding-bottom: 80rpx;
  333. height: 66rpx;
  334. width: 100%;
  335. z-index: 10000;
  336. .status-2 {
  337. background-color: #f83224;
  338. border-radius: 34rpx;
  339. font-size: 28rpx;
  340. color: #fff;
  341. height: 68rpx;
  342. border: 2rpx solid #f83224;
  343. margin: 0 24rpx;
  344. line-height: 68rpx;
  345. padding: 0 34rpx;
  346. }
  347. }
  348. </style>