123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417 |
- <template>
- <view class="orderVerifica">
- <capsule :showBorder="true">
- <template v-slot:top>
- <view class="shop-top">
- <view class="back-icon" @click="back">
- <tui-icon name="arrowleft" :size="36" color="#000"></tui-icon>
- </view>
- <view class="shop-name">订单核销</view>
- </view>
- </template>
- </capsule>
- <template v-if="!flag">
- <view class="order-number"
- >订单编号:{{ orderDetail.orderFormid || "" }}</view
- >
- <view class="verifica-container">
- <view class="verifica-info">
- <view class="info-state">
- <template v-if="orderDetail.state == 8"
- >订单状态:(待核销)</template
- >
- <template v-if="orderDetail.state == 9"
- >订单状态:(待核销已付款)</template
- >
- <template v-if="orderDetail.state == 10"
- >订单状态:<text style="color: #ea1717;">(已核销)</text></template
- >
- </view>
- <view class="info-state">商户: {{ shopInfo.shopName }} </view>
- <view class="info-price">
- <view class="all-price">
- 商品总价:¥<text>{{
- orderDetail.price ? Number(orderDetail.price).toFixed(2) : ""
- }}</text>
- </view>
- <view class="all-price">
- 实付款:¥<text>{{
- orderDetail.orderPrice
- ? Number(orderDetail.orderPrice).toFixed(2)
- : ""
- }}</text>
- </view>
- </view>
- </view>
- <view class="verifica-product">
- <view class="verifica-time">
- <text>创建时间</text>
- <text>{{ orderDetail.createTime }}</text>
- </view>
- <view class="commodity-list">
- <view
- class="commodity-item"
- v-for="item in orderDetail.products"
- :key="item.productId"
- >
- <view class="item-left">
- <view class="left-image">
- <image :src="item.image" />
- </view>
- <view class="left-text">
- <view class="text-title">{{ item.productName }}</view>
- <!-- <template v-if="item2.productName == '扫码付款商品'">
- <view class="text-price">扫码付款商品</view>
- </template> -->
- <template>
- <view class="text-price">{{
- item.skuDetails[0].skuName
- }}</view>
- <view class="text-price">x{{ item.number }}</view>
- </template>
- </view>
- </view>
- <view class="item-right"
- >¥{{ item.productPrice.toFixed(2) }}</view
- >
- </view>
- </view>
- <!-- <view class="gifts">
- <view class="gifs-left">赠送代金券</view>
- <view class="gifs-right">¥1 x 1</view>
- </view> -->
- <view class="verifica-code">
- <text>核销码</text>
- <text>{{ code }}</text>
- </view>
- <view class="verifica-code">
- <text>支付方式</text>
- <text>
- <template v-if="orderDetail.paymentMode == 1"
- >微信</template
- >
- <template v-else-if="orderDetail.paymentMode == 2"
- >支付宝</template
- >
- <template v-else-if="orderDetail.paymentMode == 3"
- >花呗分期</template
- >
- <template v-else-if="orderDetail.paymentMode == 4"
- >通联支付</template
- >
- <template v-else-if="orderDetail.paymentMode == 5"
- >平台余额支付</template
- >
- <template v-else-if="orderDetail.paymentMode == 6"
- >商家余额支付</template
- >
- <template v-else-if="orderDetail.paymentMode == 7"
- >佣金支付</template
- >
- <template v-else-if="orderDetail.paymentMode == 8"
- >消费金支付</template
- >
- <template v-else-if="orderDetail.paymentMode == 9"
- >惠市宝支付</template
- >
- <template v-else
- >用户暂未支付该订单</template
- >
- </text>
- </view>
- <view class="verifica-code">
- <text>支付时间</text>
- <text>{{ orderDetail.paymentTime || "用户暂未支付该订单" }}</text>
- </view>
- </view>
- <view class="verifica-btn">
- <template v-if="orderDetail.state == 9">
- <view class="btn" @click="confirmBtn">确认核销</view>
- </template>
- <template v-else-if="orderDetail.state == 8">
- <view class="btn disable" @click="disableBtn">确认核销</view>
- </template>
- </view>
- </view>
- <modal
- :showModal="modal"
- :promptList="promptList"
- @closeModal="closeModal"
- @btnClick="backClick"
- :showBtn="showBtn"
- :showText="showText"
- ></modal>
- </template>
- <template v-else>
- <view class="success-container">
- <image class="" src="@/static/image/code/success.png" />
- <text>核销成功</text>
- <view class="success-back" @click="back">返回</view>
- </view>
- </template>
- </view>
- </template>
- <script>
- import { orderGetById, orderVerify } from "@/config/index.js";
- export default {
- created() {
- // 拿到本地的 店铺数据
- this.shopInfo = uni.getStorageSync("shopInfo");
- },
- onLoad(props) {
- this.orderId = props.orderId;
- this.code = props.code.split("~")[1];
- this.getOrderDetail();
- },
- data() {
- return {
- shopInfo: {},
- // 订单详情
- orderDetail: {},
- orderId: null,
- code: "",
- // 下面是弹框
- modal: false,
- showBtn: false,
- promptList: [],
- showText: "返回扫码",
- // 判断是否核销成功
- flag: false,
- };
- },
- methods: {
- // 获取订单详情
- async getOrderDetail() {
- try {
- let res = await orderGetById({ orderId: this.orderId });
- if (Object.keys(res.data).length <= 0) {
- this.modal = true;
- this.showBtn = true;
- this.showText = "返回扫码";
- this.promptList = [
- "您扫描的当前订单",
- "可能不是您家下的单,请于用户确认",
- ];
- }
- this.orderDetail = res.data;
- } catch (error) {}
- },
- confirmBtn() {
- this.showText = "确认";
- this.modal = true;
- this.showBtn = true;
- this.promptList = ["确认订单信息", "用户商品是否是您家下的"];
- },
- disableBtn() {
- this.modal = true;
- this.showBtn = false;
- this.promptList = ["您不能进行核销", "当前订单处于未支付状态"];
- },
- // 关闭弹框
- closeModal() {
- this.modal = false;
- },
- async backClick() {
- if (this.showText == "返回扫码") {
- this.back();
- return;
- }
- if (this.showText == "确认") {
- let res = await orderVerify({ orderId: this.orderId, noticeId: 0 });
- if(res.code == ""){
- this.flag = true;
- }
- }
- },
- // 返回扫码
- back() {
- uni.navigateBack({
- delta: 1,
- fail: () => {
- uni.redirectTo({
- url: "/pages_module/scanCoupons/index",
- });
- },
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .orderVerifica {
- .shop-top {
- width: 100%;
- height: 100%;
- position: relative;
- z-index: 999;
- @include flex(center);
- .back-icon {
- position: absolute;
- left: 0;
- top: 50%;
- transform: translateY(-50%);
- }
- .shop-name {
- color: #000;
- }
- }
- .order-number {
- margin: 32rpx 0;
- color: #999999;
- font-size: 28rpx;
- padding-left: 32rpx;
- }
- .verifica-container {
- padding: 0 60rpx;
- .verifica-info {
- display: flex;
- flex-direction: column;
- gap: 12rpx;
- color: #3d3d3d;
- font-size: 28rpx;
- font-weight: 600;
- padding-bottom: 20rpx;
- border-bottom: 2rpx solid #d8d8d8;
- text {
- color: #ea1717;
- }
- .info-price {
- @include flex(space-between);
- }
- }
- .verifica-product {
- padding: 12rpx 0 20rpx;
- border-bottom: 2rpx solid #d8d8d8;
- .verifica-time {
- @include flex(space-between);
- color: #999999;
- font-size: 24rpx;
- }
- .commodity-list {
- width: 100%;
- display: flex;
- justify-content: center;
- gap: 12rpx;
- flex-direction: column;
- margin: 20rpx 0 36rpx;
- .commodity-item {
- display: flex;
- justify-content: space-between;
- .item-left {
- display: flex;
- gap: 12rpx;
- .left-image {
- width: 124rpx;
- height: 124rpx;
- image {
- width: 100%;
- height: 100%;
- border-radius: 12rpx;
- }
- }
- .left-text {
- display: flex;
- flex-direction: column;
- gap: 6rpx;
- .text-title {
- color: #333333;
- font-size: 28rpx;
- }
- .text-price {
- font-size: 24rpx;
- color: #999999;
- }
- }
- }
- .item-right {
- color: #333333;
- font-size: 28rpx;
- }
- }
- }
- .gifts {
- @include flex(space-between);
- font-size: 28rpx;
- .gifs-right {
- color: #ea1717;
- }
- }
- .verifica-code {
- color: #3d3d3d;
- font-size: 28rpx;
- @include flex(space-between);
- margin-top: 32rpx;
- }
- }
- .verifica-btn {
- padding-top: 72rpx;
- display: flex;
- justify-content: flex-end;
- .btn {
- width: 246rpx;
- height: 88rpx;
- text-align: center;
- line-height: 88rpx;
- color: #ffffff;
- font-size: 28rpx;
- border-radius: 50rpx;
- background: linear-gradient(180deg, #fe4b1e 0%, #fb8857 100%);
- }
- .disable {
- background: linear-gradient(180deg, #3b3b3b 0%, #a3a3a3 100%);
- }
- }
- }
- .success-container {
- margin-top: 208rpx;
- width: 100%;
- @include flex(center, column);
- image {
- width: 300rpx;
- height: 300rpx;
- display: block;
- }
- text {
- margin-top: 25rpx;
- color: #666666;
- font-size: 28rpx;
- }
- .success-back {
- margin-top: 52rpx;
- border-radius: 100rpx;
- background-color: #05c160;
- width: 246rpx;
- height: 88rpx;
- text-align: center;
- line-height: 88rpx;
- color: #ffffff;
- font-size: 28rpx;
- }
- }
- }
- </style>
|