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.
64 lines
829 B
64 lines
829 B
<script>
|
|
export default {
|
|
onLaunch: function() {
|
|
console.log('App Launch')
|
|
},
|
|
onShow: function() {
|
|
console.log('App Show')
|
|
},
|
|
onHide: function() {
|
|
console.log('App Hide')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import "uview-ui/index.scss";
|
|
|
|
.uni-body {
|
|
font-family: SF Pro;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#app {
|
|
height: 100%;
|
|
}
|
|
|
|
// 全局loding 样式
|
|
.loading {
|
|
height: 80rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: #C0C0C0;
|
|
}
|
|
|
|
// 全局表单校验样式
|
|
.form {
|
|
.code {
|
|
color: #cacaca;
|
|
}
|
|
|
|
.time {
|
|
color: #cacaca;
|
|
}
|
|
|
|
.formItem,
|
|
.u-form-item {
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0);
|
|
}
|
|
|
|
.focusCode {
|
|
.code {
|
|
color: #e67d29;
|
|
}
|
|
|
|
border-bottom: 1rpx solid #ff9a35;
|
|
}
|
|
|
|
.error {
|
|
border-bottom: 1rpx solid red;
|
|
}
|
|
}
|
|
</style>
|
|
|