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: {