Fix:3315 【礼品功能】待发货订单退款详情页不要显示物流信息
This commit is contained in:
@@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user