Fix:3315 【礼品功能】待发货订单退款详情页不要显示物流信息

This commit is contained in:
linxi
2025-02-28 16:03:30 +08:00
parent 1baf5de741
commit c3d6b25a5e
6 changed files with 70 additions and 23 deletions
+11 -1
View File
@@ -9,6 +9,7 @@
<view class="cover-picker">
<view class="cover-title">选择封面</view>
<swiper
:current="currentIndex"
:autoplay="false"
:circular="true"
:indicator-dots="false"
@@ -43,6 +44,10 @@
<script>
export default {
props: {
index: {
type: Number,
default: 0
},
show: {
type: Boolean,
default: true
@@ -62,7 +67,12 @@ export default {
},
data() {
return {
currentIndex: 0
currentIndex: this.index
}
},
watch: {
index(val) {
this.currentIndex = val
}
},
methods: {
+1 -1
View File
@@ -236,7 +236,7 @@ export default {
}
.auto-text-color {
color: #fff;
font-size: 28rpx;
font-size: 32rpx;
opacity: 0.8;
margin-top: 150rpx;
width: 400rpx;
+9 -5
View File
@@ -12,7 +12,9 @@
<!-- 标题 -->
<view class="title">赠礼须知</view>
<!-- 富文本内容 -->
<u-parse :content="richText" />
<view class="text-wrap">
<u-parse :content="richText" />
</view>
</view>
</u-popup>
</view>
@@ -36,10 +38,12 @@ export default {
</script>
<style lang="scss" scoped>
.popup-content {
width: 600rpx;
.text-wrap{
height: 800rpx;
overflow: auto;
}
.popup-content {
width: 600rpx;
padding:0 40rpx 40rpx 40rpx;
box-sizing: border-box;
.title {
@@ -48,10 +52,10 @@ export default {
font-size: 36rpx;
font-weight: bold;
text-align: center;
margin-bottom: 30rpx;
position: sticky;
top: 0;
background: #fff;
background-color: #fff;
z-index: 11;
}
.close-btn {