forked from angelo/web-retail-h5
feat(withDrawal): 移除灵活用工弹窗
This commit is contained in:
parent
380b863b28
commit
60046ff123
|
@ -9,7 +9,7 @@
|
|||
<view class="banner" v-if="isEmpty(banners) == false">
|
||||
<view class="uni-margin-wrap">
|
||||
<swiper
|
||||
class="swiper"
|
||||
class="swiper swiper-s"
|
||||
circular
|
||||
:indicator-dots="indicatorDots"
|
||||
:autoplay="autoplay"
|
||||
|
@ -17,6 +17,7 @@
|
|||
:duration="duration"
|
||||
>
|
||||
<swiper-item
|
||||
class="index-swiper-item"
|
||||
v-for="(item, index) in banners"
|
||||
:key="index"
|
||||
@click="bannerTap(item.link)"
|
||||
|
@ -317,6 +318,12 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.uni-margin-wrap {
|
||||
:v-deep .uni-swiper-wrapper {
|
||||
border-radius: 10px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.content {
|
||||
// background: url('~@/static/images/fBgd.jpg') no-repeat;
|
||||
background-size: 100% 100%;
|
||||
|
@ -439,8 +446,12 @@ header {
|
|||
}
|
||||
}
|
||||
|
||||
.swiper {
|
||||
border-radius: 10px;
|
||||
}
|
||||
.swiper-s {
|
||||
height: 495rpx;
|
||||
// height: 495rpx;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.goods-lists {
|
||||
|
@ -533,6 +544,10 @@ header {
|
|||
margin-left: 15rpx;
|
||||
}
|
||||
}
|
||||
.swiper {
|
||||
border-radius: 10rpx;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
:v-deep .swiper-s .swiper-items uni-image {
|
||||
height: 495rpx;
|
||||
|
@ -541,8 +556,9 @@ header {
|
|||
.swiper-items {
|
||||
// height: 495rpx;
|
||||
// width: 340rpx;
|
||||
|
||||
border-radius: 30rpx;
|
||||
image {
|
||||
border-radius: 10rpx;
|
||||
height: 450rpx;
|
||||
width: 340rpx;
|
||||
}
|
||||
|
@ -557,16 +573,17 @@ header {
|
|||
font-size: 0;
|
||||
image {
|
||||
height: 300rpx;
|
||||
border-radius: 10rpx;
|
||||
font-size: 0;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.banner {
|
||||
// padding: 30rpx 0 0 0;
|
||||
padding: 10rpx 20rpx 0;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
margin-bottom: 20rpx;
|
||||
// width: 100%;
|
||||
// margin-bottom: 10rpx;
|
||||
}
|
||||
|
||||
.changeLanguages {
|
||||
|
|
|
@ -136,10 +136,10 @@
|
|||
<u-toast ref="uToast"></u-toast>
|
||||
|
||||
<!-- 提现引导弹窗 -->
|
||||
<WithdrawalGuide
|
||||
<!-- <WithdrawalGuide
|
||||
:show="showWithdrawalGuide"
|
||||
@confirm="onWithdrawalGuideConfirm"
|
||||
/>
|
||||
/> -->
|
||||
</view>
|
||||
</template>
|
||||
|
||||
|
@ -255,10 +255,11 @@ export default {
|
|||
message: res.msg,
|
||||
type: 'success',
|
||||
})
|
||||
uni.navigateBack()
|
||||
// 显示提现引导弹窗
|
||||
setTimeout(() => {
|
||||
this.showWithdrawalGuide = true
|
||||
}, 300)
|
||||
// setTimeout(() => {
|
||||
// this.showWithdrawalGuide = true
|
||||
// }, 300)
|
||||
}
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue