Files
APP/App.vue

66 lines
1.1 KiB
Vue
Raw Normal View History

2025-07-05 14:49:26 +08:00
<script>
export default {
onLaunch: function() {
2025-07-11 16:11:40 +08:00
2025-07-05 14:49:26 +08:00
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style lang="scss">
@import 'vk-uview-ui/index.scss';
2025-07-14 09:46:58 +08:00
uni-slider .uni-slider-handle-wrapper {
2025-07-05 14:49:26 +08:00
border-radius: 20rpx;
2025-07-14 09:46:58 +08:00
2025-07-05 14:49:26 +08:00
}
2025-07-14 09:46:58 +08:00
uni-slider .uni-slider-thumb {
2025-07-05 14:49:26 +08:00
width: 66rpx !important;
2025-07-14 09:46:58 +08:00
height: 80rpx !important;
2025-07-05 14:49:26 +08:00
margin-top: -40rpx !important;
border-radius: 16rpx !important;
margin-left: -72rpx !important;
2025-07-14 09:46:58 +08:00
2025-07-05 14:49:26 +08:00
}
2025-07-14 09:46:58 +08:00
uni-slider .uni-slider-handle-wrapper {
2025-07-05 14:49:26 +08:00
height: 88rpx;
position: relative;
}
2025-07-14 09:46:58 +08:00
uni-slider .uni-slider-value {
2025-07-05 14:49:26 +08:00
position: absolute;
2025-07-14 09:46:58 +08:00
color: rgba(255, 255, 255, 0.8);
2025-07-05 14:49:26 +08:00
font-size: 32rpx;
2025-07-14 09:46:58 +08:00
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
2025-07-05 14:49:26 +08:00
}
</style>