新增营销系统、分销系统、会员功能、门店、提现功能

This commit is contained in:
Shaw
2024-02-08 21:01:37 +08:00
parent 68b3f2dcc3
commit 17c043348a
1398 changed files with 81279 additions and 56269 deletions

View File

@ -0,0 +1,68 @@
<!--
@name: OrderLogisticsInfo
@author: kahu4
@date: 2024-01-22 12:02
@descriptionOrderLogisticsInfo
@update: 2024-01-22 12:02
-->
<script setup>
import { toRefs } from "vue";
const props = defineProps({
orderInfoData: {
type: Object,
required: true
},
expressData: {
type: Object,
required: true
}
})
const {orderInfoData, expressData} = toRefs(props)
</script>
<template>
<view
v-if="orderInfoData.status >= 1 && expressData"
class="mb-20 card"
>
<view class="card-head">
<view class="card-title">
物流信息
</view>
</view>
<view
v-if="expressData"
class="card-content "
>
<view class="paddingH-10">
<view
v-if="expressData.length === 0"
class="no-express">暂无轨迹信息
</view>
<uv-steps
v-else
activeColor="#EE6D46"
current="0"
direction="column"
inactiveColor="#E5E5E5"
>
<uv-steps-item
v-for="(item, index) in expressData"
:key="index"
:desc="item.acceptTime"
:title="item.acceptStation"
></uv-steps-item>
</uv-steps>
</view>
</view>
</view>
</template>
<style
scoped
lang="scss">
</style>