50 lines
891 B
Vue
50 lines
891 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>
|
|
@import url("static/font/index.css");
|
|
/*每个页面公共css */
|
|
:root{
|
|
--tw-shadow-color: red;
|
|
--colo-danger: #fb2c36;
|
|
}
|
|
.flex{
|
|
display: flex;
|
|
}
|
|
.shadow-sm{
|
|
|
|
}
|
|
.justify-between{
|
|
justify-content: space-between;
|
|
}
|
|
.items-center {
|
|
align-items: center;
|
|
}
|
|
button{
|
|
background-color: transparent;
|
|
border: 0 !important;
|
|
}
|
|
|
|
page{
|
|
--color-danger: #fb2c36;
|
|
--color-success: #00c951;
|
|
--color-warning: #ff6900;
|
|
--color-primary: #9810fa;
|
|
|
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
--background-linear-gradient: linear-gradient(to right, #ad46ff, #f6339a)
|
|
/* --color-text-primary: # */
|
|
}
|
|
</style>
|