123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578 |
- <template>
- <view class="page" @click="closeShow">
- <!-- 订单状态 -->
- <view class="title">
- <view class="payment">{{ orderDetail.simplify_status_text }}</view>
- <text class="timer" v-if="orderDetail.simplify_status == 'unpaid'"
- >{{ i18n.leftOver
- }}<text v-if="loseEfficacy / 60 > 1">{{ hours }}{{ i18n.hour }}</text
- >{{ minute }}{{ i18n.automaticShutdown }}</text
- >
- <text
- v-else-if="orderDetail.simplify_status == 'undifference'"
- class="timer"
- >{{ i18n.additionalPostage }}</text
- >
- </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>
- <view class="photo" v-if="orderDetail.simplify_status == 'undifference'">
- <view class="_weight">
- <text>{{ i18n.weighingWeight }}</text>
- <text>{{ orderDetail.call_weight }}kg</text>
- </view>
- <view class="_weight">
- <text>{{ i18n.weighingImage }}</text>
- <!-- <view class="_image"> </view> -->
- <image
- :src="orderDetail.call_image"
- mode="scaleToFill"
- class="_image"
- />
- </view>
- <view class="photo-bottom">
- <text class="_text-1">{{ i18n.needPostage }}</text>
- <view class="price">
- <text style="font-size: 20rpx">¥</text>
- <text>{{ orderDetail.fill_price.split(".")[0] }}</text
- >.
- <text style="font-size: 20rpx">{{
- orderDetail.fill_price.split(".")[1]
- }}</text>
- </view>
- </view>
- </view>
- <commodityDetailVue
- :status="status"
- :orderDetail="orderDetail"
- :language="language"
- />
- <view class="order">
- <view class="order-number">
- <text> {{ i18n.OrderNumber }} </text>
- <view>
- {{ orderDetail.order_no }} |
- <text decode @click="cope(orderDetail.order_no)">{{
- " " + i18n.cope
- }}</text>
- </view>
- </view>
- <view
- class="order-number"
- v-if="
- orderDetail.simplify_status == 'unreview' ||
- orderDetail.simplify_status == 'paid' ||
- orderDetail.simplify_status == 'merdelivered' ||
- orderDetail.simplify_status == 'finished' ||
- orderDetail.simplify_status == 'delivered' ||
- orderDetail.simplify_status == 'undelivered' ||
- orderDetail.simplify_status == 'undifference'
- "
- >
- <text> {{ i18n.payMethod }} </text>
- <view> {{ orderDetail.pay_type_name }} </view>
- </view>
- <view
- class="order-number"
- v-if="
- orderDetail.simplify_status == 'unreview' ||
- orderDetail.simplify_status == 'paid' ||
- orderDetail.simplify_status == 'finished' ||
- orderDetail.simplify_status == 'undelivered' ||
- orderDetail.simplify_status == 'delivered' ||
- orderDetail.simplify_status == 'undifference'
- "
- >
- <text> {{ i18n.payTime }} </text>
- <view> {{ orderDetail.paid_at }} </view>
- </view>
- <view class="order-number">
- <text> {{ i18n.Ordertime }} </text>
- <view>{{ orderDetail.created_at }} </view>
- </view>
- </view>
- <!-- <view
- class="contact"
- v-if="
- (orderDetail.simplify_status == 'unpaid' ||
- orderDetail.simplify_status == 'paid' ||
- orderDetail.simplify_status != 'merdelivered' ||
- orderDetail.simplify_status == 'undelivered') &&
- orderDetail.simplify_status != 'closed'
- "
- >
- 联系团长
- </view> -->
- <view
- class="footer"
- v-if="
- orderDetail.simplify_status != 'paid' &&
- orderDetail.simplify_status != 'merdelivered' &&
- orderDetail.simplify_status != 'unreview' &&
- orderDetail.simplify_status != 'undelivered'
- "
- >
- <button
- class="status-1"
- v-if="
- orderDetail.simplify_status == 'unpaid' ||
- orderDetail.simplify_status == 'unreview'
- "
- @click="cancelOrder"
- >
- {{ i18n.cancellationOrder }}
- </button>
- <button
- class="status-2"
- v-if="orderDetail.simplify_status == 'unpaid'"
- @click="toUnPay"
- >
- {{ i18n.continuePayment }}
- </button>
- <button
- class="status-1"
- @click.stop="deleteOrder"
- v-if="
- orderDetail.simplify_status == 'closed' || status == 3 || status == 4
- "
- >
- {{ i18n.deleteOrder }}
- </button>
- <button
- class="status-2"
- @click.stop="againOrder"
- v-if="
- orderDetail.simplify_status == 'closed' || status == 3 || status == 4
- "
- >
- {{ i18n.buyAgain }}
- </button>
- <button
- class="status-1"
- v-if="
- orderDetail.simplify_status == 'domestic_delivered' ||
- orderDetail.simplify_status == 'delivered'
- "
- @click="toLogistics"
- >
- {{ i18n.checkLogistics }}
- </button>
- <button
- class="status-2"
- v-if="
- orderDetail.simplify_status == 'domestic_delivered' ||
- orderDetail.simplify_status == 'delivered'
- "
- @click="confirmReceipt"
- >
- {{ i18n.confirmReceipt }}
- </button>
- <view
- style="margin-right: 40rpx; color: #777; font-size: 28rpx"
- v-if="orderDetail.simplify_status == 'finished'"
- @click="more"
- >{{ i18n.more }}</view
- >
- <button
- class="status-1"
- v-if="orderDetail.simplify_status == 'finished'"
- @click="toLogistics"
- >
- {{ i18n.checkLogistics }}
- </button>
- <button
- class="status-1"
- v-if="orderDetail.simplify_status == 'finished'"
- @click.stop="againOrder"
- >
- {{ i18n.anotherOrder }}
- </button>
- <!-- <button
- class="status-2"
- v-if="orderDetail.simplify_status == 'finished'"
- @click.stop="toEvaluate"
- >
- 评价
- </button> -->
- <button
- class="status-2"
- v-if="orderDetail.simplify_status == 'undifference'"
- @click.stop="toPay"
- >
- {{ i18n.payment }}
- </button>
- </view>
- <u-transition :show="show">
- <view class="transition" @click.stop="deleteOrder">{{
- i18n.deleteOrder
- }}</view>
- </u-transition>
- <agreePopup
- :title="i18n.confirmGoods"
- :agreeShow="agreeShow"
- @close="close"
- />
- </view>
- </template>
- <script>
- import commodityDetailVue from "./component/commodityDetail.vue";
- import agreePopup from "../mineComponent/agreePopup.vue";
- export default {
- components: {
- commodityDetailVue,
- agreePopup,
- },
- data() {
- return {
- status: 6,
- show: false,
- orderDetail: {},
- agreeShow: false,
- hours: "",
- minute: "",
- loseEfficacy: "", //失效时间
- language: this._language, //当前用户选择的语言
- };
- },
- computed: {
- i18n() {
- return this.$t("index");
- },
- },
- methods: {
- //复制
- cope(e) {
- uni.setClipboardData({
- data: e,
- success() {
- uni.showToast({
- title: "复制成功",
- icon: "none",
- });
- },
- });
- },
- //跳转评价
- toEvaluate() {
- uni.navigateTo({
- url: `/pageD/evaluate/evaluate?orderId=${this.orderDetail.id}`,
- });
- },
- more() {
- this.show = true;
- },
- //确认收货
- confirmReceipt() {
- this.agreeShow = true;
- // uni.$u.http
- // .post(`/api/order/receive/${this.orderDetail.id}`)
- // .then((res) => {});
- },
- //value为true时,确认收货
- //跳转支付
- toPay() {
- uni.navigateTo({
- url: `/pageA/payorder?sum=${this.orderDetail.fill_price}&orderid=${this.orderDetail.id}&orderType=difference`,
- });
- },
- //再来一单 or 再次购买
- againOrder() {
- uni.navigateTo({
- url: `/pageD/newBulitOrder/newBulitOrder?orderId=${this.orderDetail.id}`,
- });
- },
- //跳转支付
- toUnPay() {
- uni.navigateTo({
- url: `/pageA/payorder?sum=${this.orderDetail.amount}&orderid=${this.orderDetail.id}`,
- });
- },
- //删除订单
- deleteOrder() {
- uni.$u.http
- .post(`/api/order/order_del`, { order_id: this.orderDetail.id })
- .then((res) => {
- uni.navigateBack({
- delta: 1,
- });
- this.show = false;
- uni.showToast({
- title: this.i18n.successfullydelete,
- icon: "none",
- });
- });
- },
- //查看物流进度
- toLogistics(value) {
- uni.navigateTo({
- url: "/pageD/logisticsProgress/logisticsProgress",
- });
- },
- close(value) {
- if (value) {
- uni.$u.http
- .post(`/api/order/receive/${this.orderDetail.id}`)
- .then((res) => {
- this.agreeShow = false;
- this.getDetail();
- uni.showToast({
- title: "订单已确认收货",
- icon: "none",
- });
- });
- } else {
- this.agreeShow = false;
- }
- },
- closeShow(e) {
- if (
- e._relatedInfo.anchorTargetText != "更多" &&
- e._relatedInfo.anchorTargetText != "删除订单"
- ) {
- this.show = false;
- }
- },
- //取消订单
- cancelOrder() {
- uni.$u.http
- .post(`/api/order/cancel/${this.orderDetail.id}`)
- .then((res) => {
- this.getDetail();
- uni.showToast({
- title: this.i18n.annullato,
- icon: "none",
- });
- });
- },
- //获取时间,倒计时
- getCountdown(timer) {
- const nowTime = new Date().getTime(); //当前时间的毫秒数
- const appointTime = new Date(timer).getTime(); //创建订单时间的毫秒数
- const count = nowTime - appointTime; //当前时间到创建订单时间的毫秒数
- const loseEfficacyTime = this.loseEfficacy * 60 * 1000; //失效时间转换为毫秒
- //86400000 24小时
- if (count < loseEfficacyTime) {
- const currentTime = loseEfficacyTime - count;
- this.hours = Math.floor(currentTime / (1000 * 60 * 60)); //获取小时
- //获取分钟
- this.minute = Math.floor(
- (currentTime % (1000 * 60 * 60)) / (1000 * 60)
- );
- }
- },
- //获取订单信息
- getDetail() {
- uni.$u.http.get(`/api/order/read?id=${this.status}`).then((res) => {
- this.orderDetail = res;
- this.getCountdown(this.orderDetail.created_at);
- });
- },
- //获取配置信息
- getConfig() {
- uni.$u.http
- .get(`/api/config?module=basic&key=order_pay_termine`)
- .then((res) => {
- this.loseEfficacy = res;
- });
- },
- },
- onShow() {
- this.getConfig();
- this.getDetail();
- },
- onLoad(option) {
- this.status = option.orderId;
- },
- };
- </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;
- }
- }
- .photo {
- background-color: #fff;
- border-radius: 16rpx;
- padding: 20rpx 20rpx;
- margin-top: 20rpx;
- ._weight {
- display: flex;
- justify-content: space-between;
- font-size: 26rpx;
- color: rgba(34, 34, 34, 0.8);
- margin-bottom: 32rpx;
- ._image {
- width: 160rpx;
- height: 90rpx;
- // background-color: #d8d8d8;
- border-radius: 4rpx;
- }
- }
- .photo-bottom {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- border-top: 2rpx solid rgba(151, 151, 151, 0.1);
- padding-top: 24rpx;
- .price {
- color: #f83224;
- font-weight: 600;
- }
- ._text-1 {
- font-size: 26rpx;
- }
- }
- }
- .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;
- width: 168rpx;
- height: 68rpx;
- border: 2rpx solid #f83224;
- margin-right: 24rpx;
- }
- }
- .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>
|