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

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,57 @@
<!--
@name: OrderAddress
@author: kahu4
@date: 2024-01-22 11:41
@descriptionOrderAddress
@update: 2024-01-22 11:41
-->
<script setup>
import { toRefs } from "vue";
import { orderAddressIcon } from "@/utils/images";
const props = defineProps({
orderInfoData: {
type: Object,
required: true
}
})
const {orderInfoData} = toRefs(props)
</script>
<template>
<view class="address noBorder">
<view class="address-icon">
<image
:src="orderAddressIcon"
class="image"
/>
</view>
<view class="address-main">
<template v-if="orderInfoData.shippingType!==2">
<view class="address-header">
<view class="address-name">{{ orderInfoData.realName }}</view>
<view class="address-phone">{{ orderInfoData.userPhone }}</view>
</view>
<view class="address-content">
<view class="address-desc">{{ orderInfoData.userAddress }}</view>
</view>
</template>
<template v-else>
<view class="address-header">
<view class="address-name">{{ orderInfoData.storeName }}</view>
</view>
<view class="address-content">
<view class="address-desc">{{ orderInfoData.shopAddress }}</view>
</view>
</template>
</view>
</view>
</template>
<style
scoped
lang="scss">
</style>