123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- <template>
- <view class="orders-container">
- <JHeader title="商家订单" width="50" height="50" style="padding: 24upx 0 0;"></JHeader>
- <view style="text-align: right;">
- <tui-button
- type="danger" width="220rpx" height="60rpx" margin="0 30upx 0 0"
- style="display: inline-block;border-radius: 30rpx;" @click="isShowVerificationCodeDialog = true"
- >
- 订单核销 →
- </tui-button>
- </view>
- <view class="navs">
- <view
- v-for="item in businessSubNavs" :key="item.value" class="nav-item"
- :class="{ 'nav-item-active': queryInfo.state === item.value }" @click="handleSwitchStatus(item.value)"
- >
- {{ item.label }}
- </view>
- </view>
- <view v-if="orderList && orderList.length" class="order-list-wrapper">
- <view
- v-for="item in orderList" :key="item.id"
- style="padding: 16upx 24upx 26upx;margin: 0 14upx 20upx;font-size: 28upx;background-color: #ffffff;"
- >
- <view>
- <!-- <view>
- <text>订单ID:</text>
- <text>{{ item.orderId || '--' }}</text>
- </view> -->
- <view style="display: flex;justify-content: space-between;align-items: center;">
- <view>
- <text>订单编号:</text>
- <text>{{ item.orderFormid || '--' }}</text>
- </view>
- <view>
- <text>{{ orderTypeEnum[item.state] || '--' }}</text>
- </view>
- </view>
- <view style="display: flex;justify-content: space-between;align-items: center;">
- <view>
- <text>用户手机号:</text>
- <text>{{ item.buyerPhone || '--' }}</text>
- </view>
- <view>
- <text v-if="item.paymentState">已支付</text>
- <text v-else>未支付</text>
- </view>
- </view>
- <view style="margin-top: 8upx;">
- <view style="display: flex;justify-content: space-between;align-items: center;">
- <view>
- <text>收货人姓名:</text>
- <text>{{ item.receiveName || '--' }}</text>
- </view>
- <view>
- <text>手机号:</text>
- <text>{{ item.receivePhone || '--' }}</text>
- </view>
- </view>
- <view>
- <text>收货人地址:</text>
- <text>{{ item.receiveAdress || '--' }}</text>
- </view>
- <view>
- <text>详细地址:</text>
- <text>{{ item.address || '--' }}</text>
- </view>
- </view>
- <view v-if="item.logisticsName || item.deliverFormid" style="margin-top: 8upx;">
- <view style="display: flex;justify-content: space-between;align-items: center;">
- <view>
- <text>物流方案名称:</text>
- <text>{{ item.logisticsName || '--' }}</text>
- </view>
- <view>
- <text>费用:</text>
- <text style="font-size: 32upx;color: #eb0909;">¥{{ item.logisticsPrice || '--' }}</text>
- </view>
- </view>
- <view style="display: flex;justify-content: space-between;align-items: center;">
- <view>
- <text>单号:</text>
- <text>{{ item.deliverFormid || '--' }}</text>
- </view>
- <view>
- <text>公司:</text>
- <text>{{ item.express || '--' }}</text>
- </view>
- </view>
- </view>
- <view style="padding: 12upx 0;margin-top: 12upx;border-top: 2upx solid #eeeeee;border-bottom: 2upx solid #eeeeee;">
- <view v-if="item.products && item.products.length">
- <view v-for="prod in item.products" :key="prod.skuId" style="display: flex;margin-top: 10upx;">
- <view>
- <image :src="common.seamingImgUrl(prod.image)" style="width: 180upx;height: 180upx;" />
- </view>
- <view style="display: flex;flex-direction: column;justify-content: space-evenly;margin-left: 18upx;">
- <view>{{ prod.productName }}</view>
- <view>{{ prod.value }}</view>
- <view><text style="margin-right: 8upx;font-size: 32upx;color: #eb0909;">¥{{ prod.price }}</text> x {{ prod.number }}</view>
- </view>
- </view>
- </view>
- <view style="margin-top: 8upx;">
- <view style="display: flex;justify-content: space-between;align-items: center;">
- <view>
- <text>商品数量:</text>
- <text>{{ item.number }}</text>
- </view>
- <view>
- <text>售后单号:</text>
- <text>{{ item.afterFormIds || '--' }}</text>
- </view>
- </view>
- <view style="display: flex;justify-content: space-between;align-items: center;">
- <view>
- <text>商品总价:</text>
- <text style="font-size: 32upx;color: #eb0909;">¥{{ item.orderPrice }}</text>
- </view>
- <view>
- <text>支付金额:</text>
- <text style="font-size: 32upx;color: #eb0909;">¥{{ item.price }}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view style="padding: 18upx 15upx 0;">
- <view style="display: flex;justify-content: space-between;">
- <text>下单时间:</text>
- <text>{{ item.createTime || '--' }}</text>
- </view>
- <view style="display: flex;justify-content: space-between;">
- <text>支付时间:</text>
- <text>{{ item.paymentTime || '--' }}</text>
- </view>
- <view style="display: flex;justify-content: space-between;align-items: center;">
- <view>
- <text>下单账户:</text>
- <text>{{ item.customerName || '--' }}</text>
- </view>
- <view>
- <text>下单总数:</text>
- <text>{{ item.total || '--' }}</text>
- </view>
- </view>
- <view style="display: flex;justify-content: space-between;">
- <text>下单备注:</text>
- <text>{{ item.remark || '--' }}</text>
- </view>
- </view>
- </view>
- </view>
- <view style="padding-bottom: 45upx;">
- <LoadingMore
- :status="!isEmpty && !orderList.length
- ? 'loading' : !isEmpty && orderList.length && (orderList.length >= orderTotal) ? 'no-more' : ''"
- >
- </LoadingMore>
- <tui-no-data v-if="isEmpty" :fixed="false" style="margin-top: 60upx;">暂无数据</tui-no-data>
- </view>
- <!-- 订单核销dialog -->
- <tui-dialog
- style="position: relative;z-index: 888;" :buttons="[{ text: '取消' }, { text: '确认核销', color: '#586c94' }]"
- :show="isShowVerificationCodeDialog" title="订单核销" @click="handleVerificationDialog"
- >
- <template #content>
- <view>
- <tui-input v-model="verificationCode" padding="26upx 0" label="核销码" placeholder="请填写核销码"></tui-input>
- </view>
- </template>
- </tui-dialog>
- </view>
- </template>
- <script>
- import { businessSubNavs } from '../../../pages/order/config'
- import { orderTypeEnum } from '../../../components/ATFOrderInfo/config'
- import { getShopOrderAllApi, updateSetHxCodeApi } from '../../../api/anotherTFInterface'
- export default {
- name: 'ShopOrders',
- data() {
- return {
- orderList: [],
- orderTotal: 0,
- isEmpty: false,
- queryInfo: {
- searchType: 1, // "搜索类型 1-订单ID 2-买家账户 3-收件人姓名 4-收件人手机号 5-商品ID"
- search: '',
- state: 0,
- afterState: '',
- dates: [],
- page: 1,
- pageSize: 10
- },
- businessSubNavs,
- orderTypeEnum,
- isShowVerificationCodeDialog: false,
- verificationCode: ''
- }
- },
- onShow() {
- this.queryInfo.page = 1
- this.getOrderList()
- },
- methods: {
- // 获取订单信息
- getOrderList(isLoadmore) {
- uni.showLoading()
- getShopOrderAllApi({ ...this.queryInfo, state: this.queryInfo.state || '' })
- .then((res) => {
- this.orderTotal = res.data.total
- if (isLoadmore) {
- this.orderList.push(...res.data.list)
- } else {
- this.orderList = res.data.list
- }
- this.isEmpty = this.orderList.length === 0
- uni.hideLoading()
- })
- .catch(() => {
- uni.hideLoading()
- })
- },
- // 切换状态
- handleSwitchStatus(status) {
- this.queryInfo.state = status
- this.queryInfo.page = 1
- this.getOrderList()
- },
- async handleVerificationDialog(e) {
- console.log(e)
- if (e.index === 0) {
- } else if (e.index === 1) {
- if (!this.verificationCode) return this.$showToast('请填写核销码')
- await updateSetHxCodeApi({ orderId: this.verificationCode, noticeId: 0 })
- .then((res) => {
- this.$showToast('核销成功', 'success')
- this.queryInfo.page = 1
- this.getOrderList()
- })
- }
- this.verificationCode = ''
- this.isShowVerificationCodeDialog = false
- }
- },
- onReachBottom() {
- if (this.orderList.length < this.orderTotal) {
- ++this.queryInfo.page
- this.getOrderList(true)
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .orders-container {
- font-size: 28upx;
- color: #3d3d3d;
- padding: 60upx 0;
- box-sizing: border-box;
- .navs {
- width: 100%;
- display: flex;
- margin: 34upx 0;
- padding: 0 28upx;
- white-space: nowrap;
- overflow-x: auto;
- .nav-item {
- width: fit-content;
- padding: 0 26upx;
- transition: all 350ms;
- &.nav-item-active {
- color: #ff8f1f;
- }
- }
- }
- .order-list-wrapper {
- background-color: #f6f6f6;
- padding-top: 10px;
- font-size: 24upx;
- }
- }
- </style>
|