66 lines
1.1 KiB
Vue
66 lines
1.1 KiB
Vue
<script>
|
|
export default {
|
|
|
|
onLaunch: function() {
|
|
|
|
},
|
|
onShow: function() {
|
|
console.log('App Show')
|
|
},
|
|
onHide: function() {
|
|
console.log('App Hide')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import 'vk-uview-ui/index.scss';
|
|
|
|
uni-slider .uni-slider-handle-wrapper {
|
|
border-radius: 20rpx;
|
|
|
|
}
|
|
|
|
uni-slider .uni-slider-thumb {
|
|
width: 66rpx !important;
|
|
height: 80rpx !important;
|
|
margin-top: -40rpx !important;
|
|
border-radius: 16rpx !important;
|
|
margin-left: -72rpx !important;
|
|
|
|
}
|
|
|
|
uni-slider .uni-slider-handle-wrapper {
|
|
height: 88rpx;
|
|
position: relative;
|
|
}
|
|
|
|
uni-slider .uni-slider-value {
|
|
position: absolute;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
font-size: 32rpx;
|
|
right: 2.5%;
|
|
top: -60rpx
|
|
}
|
|
|
|
.custom-file-picker .file-picker__box-content {
|
|
background: rgba(26, 26, 26, 1);
|
|
border: none !important;
|
|
border-radius: 45rpx;
|
|
width: 180rpx;
|
|
height: 180rpx;
|
|
}
|
|
|
|
.uni-file-picker.custom-file-picker {
|
|
overflow: inherit !important;
|
|
}
|
|
|
|
.custom-file-picker .icon-add {
|
|
height: 5rpx !important;
|
|
width: 70rpx !important;
|
|
}
|
|
|
|
.custom-file-picker .file-picker__box-content {
|
|
// display: none
|
|
}
|
|
</style> |