123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <template>
- <!--pages/express-delivery/express-delivery.wxml-->
- <!-- 物流信息 -->
- <view class="container">
- <view class="wrapper">
- <view class="deliveryInfo" style="background:url(http://jiales.gz-yami.com/delivery-bg.png) center center no-repeat #fff;">
- <view class="icon-express" style="background:url(http://jiales.gz-yami.com/delivery-car.png) no-repeat;background-size:100% 100%;">
- </view>
- <view class="infoWarp">
- <view class="companyname">
- <text class="key">物流公司:</text>
- <text class="value">{{companyName}}</text>
- </view>
- <view class="expno">
- <text class="key">运单编号:</text>
- <text class="value">{{dvyFlowId}}</text>
- </view>
- </view>
- </view>
- <view class="deliveryDetail" v-if="dvyData.length">
- <block v-for="(item, index) in dvyData" :key="index">
- <view :class="'detailItem ' + (index==0?'lastest':'')">
- <view class="dot">
- <image src="/static/images/icon/delive-dot.png"></image>
- <image src="/static/images/icon/dot.png"></image>
- </view>
- <view class="detail">
- <view class="desc">{{item.context}}</view>
- <view class="time">{{item.time}}</view>
- </view>
- </view>
- </block>
- </view>
- <view class="empty-space" v-else>
- 暂无配送信息
- </view>
- </view>
- </view>
- </template>
- <script>
- // pages/express-delivery/express-delivery.js
- var http = require("../../utils/http.js");
- export default {
- data() {
- return {
- companyName: "",
- dvyFlowId: "",
- dvyData: []
- };
- },
- components: {},
- props: {},
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- var ths = this;
- uni.showLoading();
- var params = {
- url: "/delivery/check",
- method: "GET",
- data: {
- orderNumber: options.orderNum
- },
- callBack: function (res) {
- //console.log(res);
- ths.setData({
- companyName: res.companyName,
- dvyFlowId: res.dvyFlowId,
- dvyData: res.data
- });
- uni.hideLoading();
- }
- };
- http.request(params);
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {},
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {},
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {},
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {},
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {},
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {},
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {},
- methods: {}
- };
- </script>
- <style>
- @import "./express-delivery.css";
- </style>
|