123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359 |
- <template>
- <view class="page">
- <!-- 订单状态 -->
- <view class="title">
- <view>
- <view class="payment">
- {{ title }}
- </view>
- </view>
- </view>
- <!-- 订单状态 -->
- <!-- 地址信息 -->
- <view class="address">
- <view class="name-phone">
- <u-icon name="map" size="22"></u-icon>
- <view style="margin: 0 20rpx; font-size: 32rpx">{{
- orderDetail.address_name
- }}</view>
- <text class="phone">{{ orderDetail.address_mobile }}</text>
- </view>
- <view class="address-detail">
- {{ orderDetail.full_address }}
- </view>
- <view
- class="logistics"
- v-if="
- orderDetail.simplify_status == 'merdelivered' ||
- orderDetail.simplify_status == 'delivered'
- "
- >
- <text class="_label">物流单号</text>
- <view class="num">
- <text>{{ orderDetail.delivery_company }}</text>
- <text>{{ " " + "|" + " " }}</text>
- <text>{{ orderDetail.delivery_no }}</text>
- <image
- class="cope-icon"
- src="../../static/mine/349.png"
- mode=""
- ></image>
- </view>
- </view>
- </view>
- <commodityDetailVue
- :status="orderDetail.simplify_status"
- :commodityInformation="orderDetail"
- />
- <view class="order">
- <view class="order-number">
- <text> 订单编号 </text>
- <view>
- {{ orderDetail.order_no }} |
- <text decode @click="cope(orderDetail.order_no)">{{
- " " + "复制"
- }}</text>
- </view>
- </view>
- <view class="order-number">
- <text> 支付方式 </text>
- <view> {{ orderDetail.pay_type_name }} </view>
- </view>
- <view class="order-number">
- <text> 支付时间 </text>
- <view> {{ orderDetail.updated_at }} </view>
- </view>
- <view class="order-number">
- <text> 创建时间 </text>
- <view> {{ orderDetail.created_at }} </view>
- </view>
- <view class="order-number">
- <text> 运输方式 </text>
- <view>
- {{ transportType }}
- </view>
- </view>
- <!-- <view class="order-number">
- <text> 包裹类型 </text>
- <view> 海运 </view>
- </view> -->
- <!-- <view class="order-number">
- <text> 包裹数量 </text>
- <view> 210 </view>
- </view> -->
- </view>
- <view class="footer" v-if="orderDetail.simplify_status != 'undelivered'">
- <button
- class="status-2"
- v-if="orderDetail.simplify_status == 'unfill'"
- @click="toPay"
- >
- 缴纳保证金
- </button>
- <button
- class="status-1"
- v-if="orderDetail.simplify_status == 'undelivered'"
- >
- 备注
- </button>
- <button
- class="status-2"
- v-if="orderDetail.simplify_status == 'undelivered'"
- @click="toSendOutGoods"
- >
- 立即发货
- </button>
- <button
- class="status-1"
- v-if="orderDetail.simplify_status == 'delivered'"
- >
- 查看物流
- </button>
- </view>
- </view>
- </template>
- <script>
- import commodityDetailVue from "./component/commodityDetail.vue";
- export default {
- components: {
- commodityDetailVue,
- },
- data() {
- return {
- status: 6,
- show: false,
- title: "",
- orderDetail: {},
- transportType: "",
- };
- },
- onLoad(option) {
- //获取上个页面传输的值,通过该值获取接口数据
- this.status = option.orderStatus;
- if (option.status == "unfill") {
- this.getUnfillOrderDetail(option.orderStatus);
- } else {
- this.getDetail(option.orderStatus);
- }
- },
- methods: {
- //复制
- cope(e) {
- uni.setClipboardData({
- data: e,
- success() {
- uni.showToast({
- title: "复制成功",
- icon: "none",
- });
- },
- });
- },
- getUnfillOrderDetail(id) {
- uni.$u.http
- .post(`/api/order/merchant_order_detail`, { id })
- .then((res) => {
- this.orderDetail = res;
- //直接在dom中使用会报错,首先判断字段存不存在,重新复制后使用
- if (res.container) {
- this.transportType = res.container.transport_type_name;
- }
- this.title = "待缴纳保证金";
- });
- },
- //获取订单详情
- getDetail(id) {
- uni.$u.http.get(`/api/order/read?id=${id}`).then((res) => {
- this.orderDetail = res;
- //直接在dom中使用会报错,首先判断字段存不存在,重新复制后使用
- if (res.container) {
- this.transportType = res.container.transport_type_name;
- }
- this.title = res.status_name;
- //根据订单状态,显示不同的字段
- // if (res.simplify_status == "unfill") {
- // this.title = "待缴纳保证金";
- // } else if (res.simplify_status == "undelivered") {
- // this.title = "待团长发货";
- // } else if (res.simplify_status == "merdelivered") {
- // this.title = "待总部发货";
- // } else if (res.simplify_status == "delivered") {
- // this.title = "总部已发货";
- // }
- });
- },
- //跳转支付
- toPay() {
- uni.navigateTo({
- url: `/pageA/payorder?num=${this.orderDetail.earnest_money}&orderid=${this.orderDetail.id}`,
- });
- },
- //跳转发货页面
- toSendOutGoods() {
- uni.navigateTo({
- url: `/pageD/deliverGoods/deliverGoods?id=${this.orderDetail.id}`,
- });
- },
- },
- created() {
- //设置顶部标题栏颜色
- uni.setNavigationBarColor({
- frontColor: "#000000",
- backgroundColor: "#f4f4f4",
- });
- },
- };
- </script>
- <style scoped lang="scss">
- .page {
- padding: 20rpx 24rpx 180rpx;
- .title {
- .payment {
- font-size: 44rpx;
- font-weight: 600;
- margin-bottom: 20rpx;
- }
- .timer {
- font-size: 28rpx;
- color: #666;
- }
- }
- .address {
- background-color: #fff;
- border-radius: 16rpx;
- padding: 34rpx 24rpx 28rpx;
- margin-top: 24rpx;
- .name-phone {
- display: flex;
- align-items: center;
- align-items: flex-end;
- .phone {
- font-size: 26rpx;
- color: #666;
- }
- }
- .address-detail {
- margin-top: 20rpx;
- font-size: 24rpx;
- color: #444;
- margin-left: 60rpx;
- }
- .logistics {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 28rpx;
- padding-top: 20rpx;
- border-top: 2rpx solid #f4f4f4;
- margin-top: 20rpx;
- ._label {
- color: #222;
- }
- .num {
- color: #555;
- display: flex;
- align-items: center;
- }
- .cope-icon {
- width: 28rpx;
- height: 28rpx;
- margin-left: 6rpx;
- }
- }
- }
- .order {
- background-color: #fff;
- border-radius: 16rpx;
- color: rgba(54, 54, 54, 0.7);
- font-size: 28rpx;
- margin-top: 20rpx;
- padding: 20rpx 20rpx;
- .order-number {
- display: flex;
- justify-content: space-between;
- margin-bottom: 32rpx;
- }
- }
- .contact {
- padding: 20rpx 0;
- background-color: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 16rpx;
- margin-top: 20rpx;
- margin-bottom: 160rpx;
- }
- .footer {
- position: fixed;
- bottom: 0;
- left: 0;
- background-color: #fff;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- padding-top: 20rpx;
- padding-bottom: 80rpx;
- height: 66rpx;
- width: 100%;
- .status-1 {
- background-color: #fff;
- border-radius: 34rpx;
- margin: 0;
- padding: 0;
- font-size: 28rpx;
- color: #222;
- width: 168rpx;
- height: 68rpx;
- margin-right: 20rpx;
- border: 2rpx solid #979797;
- }
- .status-2 {
- background-color: #ffffff;
- border-radius: 34rpx;
- margin: 0;
- padding: 0;
- font-size: 28rpx;
- color: #f83224;
- height: 68rpx;
- border: 2rpx solid #f83224;
- margin-right: 24rpx;
- line-height: 68rpx;
- padding: 0 34rpx;
- }
- }
- .transition {
- width: 164rpx;
- height: 88rpx;
- background: #ffffff;
- box-shadow: 0rpx 0rpx 20rpx -6rpx rgba(0, 0, 0, 0.3);
- position: fixed;
- bottom: 160rpx;
- text-align: center;
- line-height: 88rpx;
- font-size: 26rpx;
- color: #222;
- }
- }
- </style>
|