JewelryMall/miniprogram/components/ShippingNotice.vue
2026-02-14 19:29:15 +08:00

32 lines
786 B
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__title">发货公告</view>
<view class="shipping-notice__item">交易方式线下支付微信沟通确认</view>
<view class="shipping-notice__item">客服微信请点击联系客服获取</view>
<view class="shipping-notice__item">公司地址请联系客服获取详细地址</view>
</view>
</template>
<script setup lang="ts">
</script>
<style scoped>
.shipping-notice {
background: #fffbe6;
border-radius: 12rpx;
padding: 20rpx 24rpx;
margin: 20rpx 24rpx;
}
.shipping-notice__title {
font-size: 28rpx;
font-weight: bold;
color: #fa8c16;
margin-bottom: 12rpx;
}
.shipping-notice__item {
font-size: 24rpx;
color: #666;
line-height: 40rpx;
}
</style>