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.
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
|
/* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
|
|
|
|
|
|
@import "uview-ui/index.scss";
|
|
|
|
|
|
</style>
|
|
|
|
|
|
<script>
|
|
|
|
|
|
export default {
|
|
|
|
|
|
onLaunch: function() {
|
|
|
|
|
|
console.log('App Launch')
|
|
|
|
|
|
},
|
|
|
|
|
|
onShow: function() {
|
|
|
|
|
|
console.log('App Show')
|
|
|
|
|
|
},
|
|
|
|
|
|
onHide: function() {
|
|
|
|
|
|
console.log('App Hide')
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
@import '@/static/css/common.css';
|
|
|
|
|
|
/*每个页面公共css */
|
|
|
|
|
|
|
|
|
|
|
|
.mpopup {
|
|
|
|
|
|
margin-top: 60rpx;
|
|
|
|
|
|
min-height: 600rpx;
|
|
|
|
|
|
min-width: 640rpx;
|
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.mpopup-title {
|
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
|
font-family: PingFang SC;
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
color: #351C1B;
|
|
|
|
|
|
line-height: 40rpx;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
padding: 0rpx 42rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.u-popup__content {
|
|
|
|
|
|
|
|
|
|
|
|
background: linear-gradient(0deg, #ffffff 85%, #E4C8A2);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.mpopup-content {
|
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
|
padding: 71rpx 0rpx;
|
|
|
|
|
|
padding: 0rpx 42rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.mpopup-footer {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
padding: 0rpx 42rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|