You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
1.7 KiB
123 lines
1.7 KiB
<script>
|
|
export default {
|
|
onLaunch: function(options) {
|
|
|
|
},
|
|
onShow: function() {
|
|
console.log('App Show')
|
|
},
|
|
onHide: function() {
|
|
console.log('App Hide')
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
/*每个页面公共css */
|
|
</style>
|
|
<style lang="scss">
|
|
|
|
@import "./global";
|
|
@import "uview-ui/index.scss";
|
|
.timeReduce{
|
|
position: absolute;
|
|
right: 30rpx;
|
|
top: 20rpx;
|
|
}
|
|
/deep/ .u-empty {
|
|
margin-top: 50% !important;
|
|
}
|
|
|
|
.tCenter {
|
|
text-align: center
|
|
}
|
|
|
|
html {
|
|
// margin-top: 80rpx;
|
|
}
|
|
|
|
/*每个页面公共css */
|
|
/* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
|
|
::v-deep .u-input__input {
|
|
color: #9299AD !important;
|
|
}
|
|
.f13{
|
|
font-size: 26rpx;
|
|
}
|
|
.f15{
|
|
font-size: 30rpx;
|
|
}
|
|
// 向上距离
|
|
.m20 {
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.relative {
|
|
position: relative;
|
|
}
|
|
|
|
.borBottom {
|
|
border-bottom: 2rpx solid #484848;
|
|
;
|
|
}
|
|
|
|
.content {
|
|
// width: 750rpx;
|
|
// background: #fff;
|
|
// min-height: 100vh;
|
|
// position: relative;
|
|
// z-index: 10;
|
|
// padding: 0 32rpx;
|
|
// padding-bottom: 200rpx;
|
|
}
|
|
|
|
.container {
|
|
padding: 0 32rpx
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.flex2 {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
|
|
|
|
|
|
.btnColor {
|
|
background: linear-gradient(270.87deg, #FFD464 0.82%, #FF7575 102.54%) !important;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.plain {
|
|
border: 1px solid #FFFFFF;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.home_item_top {
|
|
margin-top: 40rpx;
|
|
}
|
|
|
|
.title_con image {
|
|
width: 36rpx;
|
|
height: 36rpx;
|
|
margin-left: 16rpx;
|
|
}
|
|
|
|
.disabled {
|
|
background: #464648 !important;
|
|
color: #999999 !important;
|
|
}
|
|
|
|
.FF9F32 {
|
|
color: #FF9F32;
|
|
}
|
|
</style>
|
|
|