JewelryMall/miniprogram/components/ShippingNotice.vue
2026-02-25 01:21:16 +08:00

52 lines
1.3 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="shipping-notice">
<view class="shipping-notice__header">
<image class="shipping-notice__icon" src="/static/ic_notice.png" mode="aspectFit" />
<text class="shipping-notice__title">发货公告</text>
</view>
<view class="shipping-notice__body">
<text class="shipping-notice__item">叶生珠宝-空托之城空托都是当天金工石结算</text>
<text class="shipping-notice__item">客服微信:15920028399</text>
<text class="shipping-notice__item">交易方式:加微信门店交易支付宝微信银行卡转账</text>
<text class="shipping-notice__item">公司地址:深圳市罗湖区水贝二路贝丽花园21栋108叶生珠宝</text>
</view>
</view>
</template>
<script setup lang="ts">
</script>
<style scoped>
.shipping-notice {
background: #fce4ec;
border-radius: 20rpx;
padding: 28rpx 30rpx;
margin: 20rpx 24rpx 0;
}
.shipping-notice__header {
display: flex;
align-items: center;
margin-bottom: 20rpx;
}
.shipping-notice__icon {
width: 36rpx;
height: 36rpx;
margin-right: 10rpx;
}
.shipping-notice__title {
font-size: 28rpx;
font-weight: 600;
color: #e91e63;
}
.shipping-notice__body {
display: flex;
flex-direction: column;
gap: 8rpx;
}
.shipping-notice__item {
font-size: 26rpx;
color: #e91e63;
line-height: 1.6;
}
</style>