deliverGoods.vue 8.2 KB

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