28 lines
536 B
Vue
28 lines
536 B
Vue
<script>
|
||
export default {
|
||
onLaunch: function() {
|
||
console.log('App Launch')
|
||
},
|
||
onShow: function() {
|
||
console.log('App Show')
|
||
},
|
||
onHide: function() {
|
||
console.log('App Hide')
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
/* 全局样式 */
|
||
/* uni-input .uni-input-input {
|
||
color: #e2e8f0 !important;
|
||
} */
|
||
|
||
/* 不使用 scoped,这样样式可以穿透组件 */
|
||
/* .form-group uni-input .uni-input-input {
|
||
color: #2c3e50 !important;
|
||
background: rgba(255, 255, 255, 0.9);
|
||
padding: 15px 18px;
|
||
border-radius: 12px;
|
||
} */
|
||
</style> |