| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389 |
- <template>
- <view>
- <view class="order-details">
- <view class="header" v-if="orderInfo.shippingType === 1">
- <view class="picTxt" v-if="orderInfo.status != 6">
- <image
- v-if="!orderInfo.paid"
- src="@/static/images/shop/daifukuan@2x.png"
- mode=""
- ></image>
- <image
- v-else-if="orderInfo.status === 0 || orderInfo.status === 1"
- src="@/static/images/shop/daifahuo@2x.png"
- mode=""
- ></image>
- <image
- v-else-if="orderInfo.status === 3"
- src="@/static/images/shop/yiwancheng@2x.png"
- mode=""
- ></image>
- <view class="data">{{ curOrderStepTxt }}</view>
- <view class="state">{{ orderInfo.orderStatusMsg }}</view>
- </view>
- <view class="header-bot">
- <image src="@/static/images/shop/dingwei@2x.png" mode=""></image>
- <view class="header-bot-right">
- <view class="header-bot-address">{{ orderInfo.userAddress }}</view>
- <view class="header-bot-name">
- <text>{{ orderInfo.realName }}</text>
- <text>{{ orderInfo.userPhone }}</text>
- </view>
- </view>
- </view>
- </view>
- <view v-if="!isGoodsReturn">
- <view
- v-if="orderInfo.shippingType == 2 && orderInfo.paid"
- class="writeOff borRadius14"
- >
- <view class="title">核销信息</view>
- <view class="grayBg">
- <view class="pictrue">
- <image :src="codeImg"></image>
- </view>
- </view>
- <view class="gear">
- <image src="@/static/images/writeOff.jpg"></image>
- </view>
- <view class="num">{{ orderInfo.verifyCode }}</view>
- <view class="rules" v-if="orderInfo.systemStore">
- <view class="item">
- <view class="rulesTitle acea-row row-middle">
- <text class="iconfont icon-shijian"></text>核销时间
- </view>
- <view class="info">
- 每日:<text class="time">{{
- orderInfo.systemStore.dayTime.replace(",", "-")
- }}</text>
- </view>
- </view>
- <view class="item">
- <view class="rulesTitle acea-row row-middle">
- <text class="iconfont icon-shuoming1"></text>使用说明
- </view>
- <view class="info">可将二维码出示给店员扫描或提供数字核销码</view>
- </view>
- </view>
- </view>
- <view v-if="orderInfo.shippingType === 1" class=""></view>
- <view v-else class="address" style="margin-top: 15rpx">
- <view class="name" @tap="makePhone"
- >{{ orderInfo.systemStore ? orderInfo.systemStore.name : ""
- }}<text class="phone">{{
- orderInfo.systemStore ? orderInfo.systemStore.phone : ""
- }}</text
- ><text class="iconfont icon-tonghua font-color"></text
- ></view>
- <view>{{
- orderInfo.systemStore ? orderInfo.systemStore.detailedAddress : ""
- }}</view>
- </view>
- </view>
- <view class="wrapper">
- <orderGoods
- :mallType="orderInfo.mallType"
- :evaluate="evaluate"
- :productType="orderInfo.type"
- :orderId="order_id"
- :ids="id"
- :uniId="uniId"
- :cartInfo="cartInfo"
- :sbMerchant="orderInfo.sbMerchant"
- ></orderGoods>
- <view
- class="wrapper-return"
- v-if="
- orderInfo.paid === true &&
- orderInfo.type !== 1 &&
- orderInfo.mallType !== 1 &&
- type === 'normal'
- "
- >
- <view v-if="orderInfo.status == 3">
- <view
- hover-class="none"
- @click="changeProduct"
- class="cancel"
- style="margin-right: 10rpx"
- v-if="
- orderInfo.exchangeStatus === 0 &&
- orderInfo.refundStatus === 0 &&
- isGoodsReturn == false
- "
- >
- 申请换货
- </view>
- <navigator
- hover-class="none"
- :url="
- '/pages/users/goods_change/index?orderId=' + orderInfo.orderId
- "
- class="cancel"
- style="margin-right: 10rpx"
- v-if="
- orderInfo.exchangeStatus === 2 &&
- orderInfo.refundStatus === 0 &&
- isGoodsReturn == false
- "
- >
- 退货信息填写
- </navigator>
- <view
- hover-class="none"
- class="cancel"
- style="margin-right: 10rpx"
- v-if="
- orderInfo.exchangeStatus === 4 &&
- orderInfo.refundStatus === 0 &&
- isGoodsReturn == false
- "
- >
- 换货中
- </view>
- <view
- hover-class="none"
- class="cancel"
- style="margin-right: 10rpx"
- v-if="
- orderInfo.exchangeStatus === 1 &&
- orderInfo.refundStatus === 0 &&
- isGoodsReturn == false
- "
- >
- 换货申请中
- </view>
- </view>
- <navigator
- hover-class="none"
- :url="
- '/pages/users/goods_return/index?orderId=' + orderInfo.orderId
- "
- class="cancel"
- v-if="
- orderInfo.refundStatus === 0 &&
- isGoodsReturn == false &&
- orderInfo.exchangeStatus === 0
- "
- >
- 申请退款
- </navigator>
- </view>
- <view class="wrapper-list">
- <view class="item">
- <view class="">商品总价</view>
- <view class="txt">¥{{ orderInfo.proTotalPrice }}</view>
- </view>
- <view class="item" v-if="orderInfo.payPostage > 0">
- <view class="">运费</view>
- <view class="txt">¥{{ orderInfo.payPostage }}</view>
- </view>
- <view
- class="item"
- v-if="orderInfo.payPostage > 0 && orderInfo?.additionalAmount"
- >
- <view class="">附加费</view>
- <view class="txt">¥{{ orderInfo.additionalAmount }}</view>
- </view>
- <view class="item" v-if="orderInfo.mallType === 0">
- <view class="">会员折扣</view>
- <view class="red">-¥{{ orderInfo.vipLevelDis }}</view>
- </view>
- <view class="item">
- <view class="">实付款</view>
- <view class="txt">
- {{
- orderInfo.mallType === 0
- ? `¥${orderInfo.payPrice}`
- : `${Number(orderInfo.proTotalPrice)}贝币`
- }}
- </view>
- </view>
- </view>
- </view>
- <view class="wrapper">
- <view class="wrapper-title">订单信息</view>
- <view class="item">
- <view>订单编号</view>
- <view class="conter acea-row row-middle row-right"
- >{{ orderInfo.orderId }}
- <!-- #ifndef H5 -->
- <text class="copy" @tap="copy">复制</text>
- <!-- #endif -->
- <!-- #ifdef H5 -->
- <text class="copy copy-data" @click="setOrderId">复制</text>
- <!-- #endif -->
- </view>
- </view>
- <view class="item">
- <view>下单时间</view>
- <view class="conter">{{ orderInfo.createTime || 0 }}</view>
- </view>
- <view class="item">
- <view>支付状态</view>
- <view class="conter" v-if="orderInfo.paid">已支付</view>
- <view class="conter" v-else>未支付</view>
- </view>
- <view class="item">
- <view>支付方式</view>
- <view class="conter" v-if="orderInfo.mallType === 0">{{
- orderInfo.payTypeStr
- }}</view>
- <view class="conter" v-else>贝币</view>
- </view>
- <view class="item" v-if="orderInfo.mark">
- <view>买家留言</view>
- <view class="conter">{{ orderInfo.mark }}</view>
- </view>
- </view>
- <view class="">
- <view class="nav refund" v-if="orderInfo.refundStatus > 0">
- <view class="title">
- <image src="@/static/images/shuoming.png" mode=""></image>
- {{ getRefundStatus() }}
- </view>
- <view class="con pad30">{{ getRefundReason() }}</view>
- </view>
- <!-- 退款订单详情 "-->
- <view v-if="isGoodsReturn" class="wrapper">
- <view class="wrapper-title">退款信息</view>
- <view class="item">
- <view>收货人</view>
- <view class="conter">{{ orderInfo.realName }}</view>
- </view>
- <view class="item">
- <view>联系电话</view>
- <view class="conter">{{ orderInfo.userPhone }}</view>
- </view>
- <view class="item">
- <view>收货地址</view>
- <view class="conter">{{ orderInfo.userAddress }}</view>
- </view>
- <view class="item">
- <view>退款快递单号</view>
- <view class="conter">{{ orderInfo.refundExpressNum }}</view>
- </view>
- </view>
- <view v-if="orderInfo.status > 0">
- <view class="wrapper" v-if="orderInfo.deliveryType == 'express'">
- <view class="wrapper-title">物流信息</view>
- <view class="item">
- <view>配送方式</view>
- <view class="conter">发货</view>
- </view>
- <view class="item">
- <view>快递公司</view>
- <view class="conter">{{ orderInfo.deliveryName || "" }}</view>
- </view>
- <view class="item">
- <view>快递号</view>
- <view class="conter">{{ orderInfo.deliveryId || "" }}</view>
- </view>
- </view>
- <view class="wrapper" v-else-if="orderInfo.deliveryType == 'send'">
- <view class="item acea-row row-between">
- <view>配送方式:</view>
- <view class="conter">送货</view>
- </view>
- <view class="item acea-row row-between">
- <view>配送人姓名:</view>
- <view class="conter">{{ orderInfo.deliveryName || "" }}</view>
- </view>
- <view class="item acea-row row-between">
- <view>联系电话:</view>
- <view class="conter acea-row row-middle row-right"
- >{{ orderInfo.deliveryId || ""
- }}<text class="copy" @tap="goTel">拨打</text></view
- >
- </view>
- </view>
- <view
- class="wrapper borRadius14"
- v-else-if="orderInfo.deliveryType == 'fictitious'"
- >
- <view class="item acea-row row-between">
- <view>虚拟发货:</view>
- <view class="conter">已发货,请注意查收</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- && orderInfo.status != 0 -->
- <template
- v-if="
- (isGoodsReturn == false && orderInfo.status != 0) ||
- (orderInfo.status == 0 && !orderInfo.paid)
- "
- >
- <view class="kong"></view>
- <view class="footer" v-if="orderInfo.status != 6">
- <view class="footer-box">
- <view class="qs-btn" v-if="!orderInfo.paid" @click.stop="cancelOrder">
- <image src="@/static/images/shop/closeOrder@2x.png" mode=""></image>
- <view class="">取消订单</view>
- </view>
- <view
- class="buyPlay"
- v-if="!orderInfo.paid"
- @tap="pay_open(orderInfo.orderId)"
- >
- <view class="buyPlay-left">
- <view class="buyPlay-left-top">
- <text>合计:</text>
- <text>{{
- orderInfo.mallType === 0
- ? `¥${orderInfo.payPrice}`
- : `${Number(orderInfo.proTotalPrice)}贝币`
- }}</text>
- </view>
- <view class="buyPlay-left-bot" v-if="orderInfo.mallType === 0"
- >共减¥{{ orderInfo.vipLevelDis }}</view
- >
- </view>
- <view class="buyPlay-btn">立即付款</view>
- </view>
- <view class="qs-btn" v-if="orderInfo.status == 3" @tap="delOrder">
- <image src="@/static/images/shop/delorder@2x.png" mode=""></image>
- <view class="">删除订单</view>
- </view>
- <navigator
- class="wuliu align-center"
- v-if="orderInfo.deliveryType == 'express' && orderInfo.status > 0"
- hover-class="none"
- :url="`/pages/users/goods_logistics/index?orderId=${orderInfo.orderId}`"
- >查看物流
- </navigator>
- <view
- class="wuliu align-center buy"
- v-if="orderInfo.status == 3 && orderInfo.type !== 1"
- @click="goOrderConfirm"
- >再次购买
- </view>
- <view
- class="align-center shouhuo"
- v-if="orderInfo.status == 1"
- @tap="confirmOrder"
- style="width: 100%"
- >确认收货</view
- >
- </view>
- </view>
- </template>
- <payment
- :payMode="payMode"
- :showPopup="showPopup"
- @payComplete="payComplete"
- @close="payClose"
- :order_id="pay_order_id"
- :totalPrice="totalPrice"
- :mallType="orderInfo.mallType"
- ></payment>
- <WechatPayment ref="wechatPaymentRef" />
- <!-- 申请换货弹窗-->
- <up-popup
- :show="changeProductShow"
- @close="changeProductShow = false"
- closeable
- >
- <view class="changeProductReasonPopup">
- <view class="title">理由</view>
- <up-textarea
- class="text-area"
- v-model="changeProductReason"
- placeholder="请输入换货理由"
- ></up-textarea>
- <view class="btnView">
- <button class="sure" @click="changeProductSure">确定</button>
- <button class="cancel" @click="changeProductShow = false">
- 取消
- </button>
- </view>
- </view>
- </up-popup>
- </view>
- </template>
- <script setup>
- import { ref, reactive, computed } from "vue";
- import { useAppStore } from "@/stores/app.js";
- import { onLoad, onShow, onHide } from "@dcloudio/uni-app";
- import {
- getOrderDetail,
- orderTake,
- orderDel,
- orderCancel,
- qrcodeApi,
- applyExchange,
- } from "@/api/order.js";
- import { openOrderRefundSubscribe } from "@/utils/SubscribeMessage.js";
- import payment from "@/components/payment";
- import WechatPayment from "@/components/payment/WechatPayment.vue";
- import orderGoods from "@/components/orderGoods";
- import { toLogin } from "@/libs/login.js";
- import { useToast } from "@/hooks/useToast";
- import { getPreOrder } from "@/libs/order";
- const appStore = useAppStore();
- const { Toast } = useToast();
- const codeImg = ref("");
- const order_id = ref("");
- const evaluate = ref(0);
- const cartInfo = ref([]);
- const orderInfo = reactive({
- systemStore: {},
- pstatus: {},
- });
- const system_store = ref({});
- const isGoodsReturn = ref(false);
- const status = ref({});
- const isClose = ref(false);
- const payMode = ref([
- {
- name: "微信支付",
- icon: "icon-wechat",
- value: "weixin",
- title: "微信快捷支付",
- payChannel: "routine",
- number: 0,
- },
- // {
- // name: "余额支付",
- // icon: "icon-balance",
- // value: "yue",
- // title: "可用余额:",
- // payChannel: "yue",
- // number: 0,
- // },
- ]);
- const showPopup = ref(false);
- const pay_order_id = ref("");
- const totalPrice = ref("0");
- const id = ref(0);
- const uniId = ref("");
- const type = ref("normal");
- const wechatPaymentRef = ref(null);
- const WX_PAY_STATUS = {
- SUCCESS: "支付成功",
- FAIL: "支付失败",
- CANCEL: "用户取消支付",
- };
- const changeProductShow = ref(false);
- const changeProductReason = ref("");
- function payComplete() {
- showPopup.value = false;
- pay_order_id.value = "";
- getOrderInfo();
- }
- function openSubcribe(page) {
- uni.showLoading({
- title: "正在加载",
- });
- openOrderRefundSubscribe()
- .then(() => {
- uni.hideLoading();
- uni.navigateTo({
- url: page,
- });
- })
- .catch(() => {
- uni.hideLoading();
- });
- }
- function makePhone() {
- uni.makePhoneCall({
- phoneNumber: system_store.value.phone,
- });
- }
- function payClose() {
- showPopup.value = false;
- }
- function pay_open() {
- const orderNo = orderInfo.orderId;
- const price = orderInfo.payPrice;
- const goPages = "/pages/order_pay_status/index?order_id=" + orderNo;
- uni.showActionSheet({
- itemList: ["微信支付"],
- success: async (res) => {
- if (res.tapIndex === 0) {
- // 微信支付
- uni.showLoading({ title: "订单支付中" });
- try {
- await wechatPaymentRef.value.createUniPay({
- amount: Number(price) * 100,
- description: `商品(¥${price})`,
- openId: appStore.$userInfo.openId,
- orderNo: orderNo,
- orderPrefix: "SHOP",
- onUniPaySuccess: async () => {
- try {
- return Toast(
- { title: "支付成功", icon: "success" },
- { tab: 4, url: goPages }
- );
- } catch (err) {
- console.error("支付失败:", err);
- uni.showToast({ title: "支付失败,请重试", icon: "none" });
- }
- },
- onUniPayCancel: () => {
- uni.showToast({ title: "用户取消支付", icon: "none" });
- },
- onUniPayFail: (err) => {
- uni.showToast({ title: "支付失败,请重试", icon: "none" });
- },
- });
- uni.hideLoading();
- } catch (wxErr) {
- uni.hideLoading();
- const errMsg = wxErr?.errMsg || "";
- if (errMsg.includes("cancel") || errMsg.includes("取消")) {
- return Toast(
- { title: WX_PAY_STATUS.CANCEL },
- { tab: 5, url: `${goPages}&msg=${WX_PAY_STATUS.CANCEL}` }
- );
- }
- return Toast(
- { title: WX_PAY_STATUS.FAIL },
- { tab: 5, url: `${goPages}&msg=${errMsg || WX_PAY_STATUS.FAIL}` }
- );
- }
- } else if (res.tapIndex === 1) {
- // 余额支付,沿用原有弹窗
- showPopup.value = true;
- pay_order_id.value = orderNo;
- totalPrice.value = price;
- }
- },
- });
- }
- function getRefundStatus() {
- const statusMap = {
- 1: "商家审核中",
- 2: "商家已退款",
- 3: "商家退款中",
- };
- return orderInfo?.refundStatus ? statusMap[orderInfo.refundStatus] : "";
- }
- function getRefundReason() {
- if (orderInfo.refundStatus == 1) {
- return "您已成功发起退款申请,请耐心等待商家处理;退款前请与商家协商一致,有助于更好的处理售后问题";
- } else if (orderInfo.refundStatus == 2) {
- return "退款已成功受理,如商家已寄出商品请尽快退回;感谢您的支持";
- } else if (orderInfo?.refundReason) {
- return "拒绝原因:" + orderInfo?.refundReason;
- }
- }
- // 订单步骤配置
- const orderSteps = ref([
- {
- title: "待付款",
- },
- {
- title: "待发货",
- },
- {
- title: "待收货",
- },
- {
- title: "已完成",
- },
- ]);
- // 当前的订单状态
- const curOrderStep = computed(() => {
- let step = 0;
- if (!orderInfo.paid) {
- step = 0; // 待付款
- } else if (orderInfo.status === 0) {
- step = 1; // 待发货
- } else if (orderInfo.status === 1) {
- step = 2; // 待收货
- } else if (orderInfo.status === 2 || orderInfo.status === 3) {
- step = 3; // 已完成
- }
- return step;
- });
- // 当前的订单状态
- const curOrderStepTxt = computed(() => {
- let step = "";
- if (!orderInfo.paid) {
- step = "待付款"; // 待付款
- } else if (orderInfo.status === 0) {
- step = "待发货"; // 待发货
- } else if (orderInfo.status === 1) {
- step = "待收货"; // 待收货
- } else if (orderInfo.status === 2 || orderInfo.status === 3) {
- step = "已完成"; // 已完成
- }
- return step;
- });
- function getOrderInfo() {
- uni.showLoading({
- title: "正在加载中",
- });
- getOrderDetail(order_id.value)
- .then((res) => {
- uni.hideLoading();
- Object.assign(orderInfo, res.data);
- evaluate.value = res.data.status == 2 ? 2 : 0;
- system_store.value = res.data.systemStore;
- id.value = res.data.id;
- cartInfo.value = res.data.orderInfoList;
- if (res.data.refundStatus != 0) isGoodsReturn.value = true;
- if (orderInfo.shippingType == 2 && orderInfo.paid)
- markCode(res.data.verifyCode);
- if (orderInfo.refundStatus > 0) {
- // uni.setNavigationBarColor({
- // frontColor: "#ffffff",
- // backgroundColor: "#666666",
- // });
- }
- })
- .catch((err) => {
- uni.hideLoading();
- Toast(
- {
- title: err,
- },
- "/pages/users/order_list/index"
- );
- });
- }
- function markCode(text) {
- qrcodeApi({
- height: "145",
- text: text,
- width: "145",
- }).then((res) => {
- codeImg.value = res.data.code;
- });
- }
- // #ifndef H5
- function copy() {
- uni.setClipboardData({
- data: orderInfo.orderId,
- });
- }
- // #endif
- function goTel() {
- uni.makePhoneCall({
- phoneNumber: orderInfo.deliveryId,
- });
- }
- function getOrderStatus() {
- let _orderInfo = orderInfo || {},
- _status = _orderInfo.pstatus || {
- type: 0,
- },
- _statusObj = {};
- let typeVal = parseInt(_status.type),
- delivery_type = _orderInfo.deliveryType,
- seckill_id = _orderInfo.seckillId ? parseInt(_orderInfo.seckillId) : 0,
- bargain_id = _orderInfo.bargainId ? parseInt(_orderInfo.bargainId) : 0,
- combination_id = _orderInfo.combinationId
- ? parseInt(_orderInfo.combinationId)
- : 0;
- _statusObj = {
- type: typeVal == 9 ? -9 : typeVal,
- class_status: 0,
- };
- if (typeVal == 1 && combination_id > 0) _statusObj.class_status = 1;
- if (typeVal == 2 && delivery_type == "express") _statusObj.class_status = 2;
- if (typeVal == 2) _statusObj.class_status = 3;
- if (typeVal == 4 || typeVal == 0) _statusObj.class_status = 4;
- if (
- !seckill_id &&
- !bargain_id &&
- !combination_id &&
- (typeVal == 3 || typeVal == 4)
- )
- _statusObj.class_status = 5;
- status.value = _statusObj;
- }
- function goJoinPink() {
- uni.navigateTo({
- url:
- "/pages/activity/goods_combination_status/index?id=" + orderInfo.pinkId,
- });
- }
- function goOrderConfirm() {
- const params = {
- mallType: orderInfo.mallType,
- preOrderType: "again",
- orderDetails: [
- {
- orderNo: order_id.value,
- },
- ],
- };
- getPreOrder(params);
- }
- function confirmOrder() {
- uni.showModal({
- title: "确认收货",
- content: "为保障权益,请收到货确认无误后,再确认收货",
- success: function (res) {
- if (res.confirm) {
- orderTake(id.value)
- .then(() => {
- Toast(
- {
- title: "操作成功",
- icon: "success",
- },
- function () {
- getOrderInfo();
- }
- );
- })
- .catch((err) => {
- Toast({
- title: err,
- });
- });
- }
- },
- });
- }
- function delOrder() {
- orderDel(id.value)
- .then(() => {
- Toast(
- {
- title: "删除成功",
- icon: "success",
- },
- {
- tab: 3,
- url: 1,
- }
- );
- })
- .catch((err) => {
- Toast({
- title: err,
- });
- });
- }
- function cancelOrder() {
- uni.showModal({
- title: "提示",
- content: "确认取消该订单?",
- success: function (res) {
- if (res.confirm) {
- orderCancel(orderInfo.id)
- .then(() => {
- Toast({
- title: "取消成功",
- });
- uni.navigateTo({
- url: "/pages/order_list/index",
- });
- })
- .catch((err) => {
- Toast({
- title: err,
- });
- getOrderInfo();
- });
- }
- },
- });
- }
- // 生命周期
- onLoad((options) => {
- type.value =
- options.type == undefined || options.type == null ? "normal" : options.type;
- if (!options.order_id && !options.uniId) {
- Toast(
- {
- title: "缺少参数",
- },
- {
- tab: 3,
- url: 1,
- }
- );
- return;
- }
- order_id.value = options.order_id;
- });
- onShow(() => {
- if (appStore.isLogin) {
- getOrderInfo();
- payMode.value[0].number = appStore.$userInfo.nowMoney;
- payMode.value = [...payMode.value];
- } else {
- toLogin();
- }
- });
- onHide(() => {
- isClose.value = true;
- });
- const setOrderId = () => {
- uni.setClipboardData({
- data: orderInfo.orderId,
- success: function () {
- Toast({
- title: "复制成功",
- });
- },
- });
- };
- // 申请换货
- const changeProduct = () => {
- changeProductShow.value = true;
- changeProductReason.value = "";
- };
- // 换货申请确认
- const changeProductSure = async () => {
- if (!changeProductReason.value) {
- uni.showToast({ title: "请输入换货理由", icon: "none" });
- return;
- }
- let obj = {
- text: changeProductReason.value,
- uni: orderInfo.orderId,
- };
- const res = await applyExchange(obj);
- if (res.code == 200) {
- changeProductShow.value = false;
- getOrderInfo();
- payMode.value[0].number = appStore.$userInfo.nowMoney;
- payMode.value = [...payMode.value];
- }
- };
- </script>
- <style>
- page {
- background: #f9f7f0;
- }
- </style>
- <style scoped lang="scss">
- .order-details {
- padding: 16rpx;
- .header {
- padding: 16rpx;
- border-radius: 16rpx;
- background: #ffffff;
- .picTxt {
- margin-bottom: 16rpx;
- display: flex;
- font-size: 28rpx;
- align-items: center;
- image {
- width: 40rpx;
- height: 40rpx;
- }
- .data {
- margin: 0 8rpx;
- color: #f8c008;
- font-weight: bold;
- }
- }
- .header-bot {
- display: flex;
- color: #333333;
- font-size: 28rpx;
- .header-bot-right {
- flex: 1;
- }
- image {
- width: 40rpx;
- height: 40rpx;
- margin-right: 8rpx;
- }
- .header-bot-address {
- font-weight: bold;
- }
- .header-bot-name {
- text {
- &:first-child {
- margin-right: 32rpx;
- }
- }
- }
- }
- }
- .nav {
- background-color: #fff;
- font-size: 26rpx;
- color: #282828;
- padding: 27rpx 0;
- width: 100%;
- border-radius: 14rpx;
- }
- .address {
- font-size: 26rpx;
- color: #868686;
- background-color: #fff;
- margin-top: 15rpx;
- padding: 30rpx 24rpx;
- .name {
- font-size: 30rpx;
- color: #282828;
- margin-bottom: 15rpx;
- .phone {
- margin-left: 40rpx;
- }
- .iconfont {
- font-size: 34rpx;
- margin-left: 10rpx;
- }
- }
- }
- .line {
- width: 100%;
- height: 3rpx;
- image {
- width: 100%;
- height: 100%;
- display: block;
- }
- }
- .wrapper {
- background-color: #ffffff;
- margin-top: 16rpx;
- padding: 16rpx;
- border-radius: 16rpx;
- .wrapper-return {
- display: flex;
- margin-top: 16rpx;
- justify-content: flex-end;
- .cancel {
- color: #333333;
- width: 190rpx;
- height: 60rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 28rpx;
- background: #f1f3f8;
- border-radius: 8rpx;
- }
- }
- .wrapper-title {
- color: #333333;
- font-size: 32rpx;
- font-weight: bold;
- }
- .item {
- font-size: 28rpx;
- color: #666666;
- display: flex;
- margin-top: 16rpx;
- justify-content: space-between;
- view {
- &:last-child {
- color: #333333;
- }
- &.red {
- color: #fd5f3c;
- font-weight: bold;
- }
- &.txt {
- font-weight: bold;
- }
- }
- .conter {
- flex: 1;
- text-align: right;
- margin-left: 16rpx;
- .copy {
- font-size: 28rpx;
- color: #f8c008;
- font-weight: bold;
- margin-left: 8rpx;
- padding-left: 8rpx;
- border-left: 2rpx solid #d8d8d8;
- }
- }
- }
- .actualPay {
- border-top: 1rpx solid #eee;
- margin-top: 30rpx;
- padding-top: 30rpx;
- .money {
- font-weight: bold;
- font-size: 30rpx;
- }
- }
- }
- .writeOff {
- background-color: #fff;
- margin-top: 15rpx;
- padding-bottom: 50rpx;
- .title {
- font-size: 30rpx;
- color: #282828;
- height: 87rpx;
- border-bottom: 1px solid #f0f0f0;
- padding: 0 24rpx;
- line-height: 87rpx;
- }
- .grayBg {
- background-color: #f2f5f7;
- width: 590rpx;
- height: 384rpx;
- border-radius: 20rpx 20rpx 0 0;
- margin: 50rpx auto 0 auto;
- padding-top: 55rpx;
- .pictrue {
- width: 290rpx;
- height: 290rpx;
- margin: 0 auto;
- image {
- width: 100%;
- height: 100%;
- display: block;
- }
- }
- }
- .gear {
- width: 590rpx;
- height: 30rpx;
- margin: 0 auto;
- image {
- width: 100%;
- height: 100%;
- display: block;
- }
- }
- .num {
- background-color: #f0c34c;
- width: 590rpx;
- height: 84rpx;
- color: #282828;
- font-size: 48rpx;
- margin: 0 auto;
- border-radius: 0 0 20rpx 20rpx;
- text-align: center;
- padding-top: 4rpx;
- }
- .rules {
- margin: 46rpx 30rpx 0 30rpx;
- border-top: 1px solid #f0f0f0;
- padding-top: 10rpx;
- .item {
- margin-top: 20rpx;
- .rulesTitle {
- font-size: 28rpx;
- color: #282828;
- .iconfont {
- font-size: 30rpx;
- color: #333;
- margin-right: 8rpx;
- margin-top: 5rpx;
- }
- }
- .info {
- font-size: 28rpx;
- color: #999;
- margin-top: 7rpx;
- .time {
- margin-left: 20rpx;
- }
- }
- }
- }
- }
- .map {
- height: 86rpx;
- font-size: 30rpx;
- color: #282828;
- line-height: 86rpx;
- border-bottom: 1px solid #f0f0f0;
- margin-top: 15rpx;
- background-color: #fff;
- padding: 0 24rpx;
- .place {
- font-size: 26rpx;
- width: 176rpx;
- height: 50rpx;
- border-radius: 25rpx;
- line-height: 50rpx;
- text-align: center;
- .iconfont {
- font-size: 27rpx;
- height: 27rpx;
- line-height: 27rpx;
- margin: 2rpx 3rpx 0 0;
- }
- }
- }
- .refund {
- padding: 0 !important;
- margin-top: 15rpx;
- background-color: #fff;
- .title {
- display: flex;
- align-items: center;
- font-size: 30rpx;
- color: #333;
- height: 86rpx;
- border-bottom: 1px solid #f5f5f5;
- font-weight: 400;
- padding: 0 24rpx;
- image {
- width: 32rpx;
- height: 32rpx;
- margin-right: 10rpx;
- }
- }
- .con {
- font-size: 25rpx;
- color: #666666;
- padding: 30rpx 24rpx;
- }
- }
- }
- .goodCall {
- color: $theme-color;
- text-align: center;
- width: 100%;
- height: 86rpx;
- padding: 0 30rpx;
- border-bottom: 1rpx solid #eee;
- font-size: 30rpx;
- line-height: 86rpx;
- background: #fff;
- .icon-kefu {
- font-size: 36rpx;
- margin-right: 15rpx;
- }
- /* #ifdef MP */
- button {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 86rpx;
- font-size: 30rpx;
- color: $theme-color;
- }
- /* #endif */
- }
- .kong {
- height: calc(132rpx + constant(safe-area-inset-bottom));
- height: calc(132rpx + env(safe-area-inset-bottom));
- }
- .footer {
- position: fixed;
- bottom: 0;
- width: 100%;
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- z-index: 9;
- background: #ffffff;
- box-shadow: inset 0rpx 1rpx 0rpx 0rpx #f1f3f8;
- .footer-box {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 22rpx 32rpx;
- padding: 22rpx 32rpx;
- }
- .qs-btn {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- image {
- width: 40rpx;
- height: 40rpx;
- }
- view {
- color: #333333;
- font-size: 20rpx;
- line-height: 36rpx;
- }
- }
- .buyPlay {
- display: flex;
- align-items: center;
- .buyPlay-left {
- text-align: right;
- .buyPlay-left-top {
- text {
- color: #333333;
- font-size: 24rpx;
- font-weight: bold;
- &:last-child {
- color: #fd5f3c;
- }
- }
- }
- .buyPlay-left-bot {
- color: #fd5f3c;
- font-size: 24rpx;
- line-height: 40rpx;
- }
- }
- .buyPlay-btn {
- color: #333333;
- width: 224rpx;
- height: 88rpx;
- display: flex;
- font-size: 32rpx;
- font-weight: bold;
- align-items: center;
- justify-content: center;
- background: #f8c008;
- border-radius: 16rpx;
- margin-left: 16rpx;
- }
- }
- .wuliu {
- width: 252rpx;
- background: rgba(248, 192, 8, 0.1);
- }
- .shouhuo {
- width: 418rpx;
- background: #f8c008;
- }
- .align-center {
- height: 88rpx;
- border-radius: 16rpx;
- color: #333333;
- font-size: 32rpx;
- font-weight: bold;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .buy {
- background: #f8c008;
- }
- }
- .changeProductReasonPopup {
- padding: 20rpx;
- box-sizing: border-box;
- .title {
- font-size: 28rpx;
- color: #333;
- text-align: center;
- padding: 10rpx 20rpx;
- }
- .text-area {
- border: 2rpx solid #dedede;
- border-radius: 20rpx;
- padding: 20rpx;
- margin-top: 20rpx;
- }
- .btnView {
- display: flex;
- width: 100%;
- gap: 20rpx;
- align-items: center;
- justify-content: center;
- margin-top: 40rpx;
- .sure {
- background: #f8c008;
- color: #fff;
- width: 200rpx;
- height: 60rpx;
- line-height: 60rpx;
- }
- .cancel {
- background-color: #f1f3f8;
- color: #333333;
- width: 200rpx;
- height: 60rpx;
- line-height: 60rpx;
- }
- }
- }
- </style>
|