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.

57 lines
998 B

4 years ago
<style lang="scss">
/* 注意要写在第一行同时给style标签加入lang="scss"属性 */
@import "uview-ui/index.scss";
</style>
4 years ago
<script>
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
4 years ago
@import '@/static/css/common.css';
4 years ago
/*每个页面公共css */
4 years ago
.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;
}
4 years ago
</style>