1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <script>
- export default {
- globalData:{
- isAdmin:false
- },
- onLaunch: function() {
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- /*每个页面公共css */
- @import "uview-ui/index.scss";
-
- .content{
- background-color: #F8F8F8;
- min-height: 100vh;
- .mine-icon{
- height: 50rpx;
- width: 50rpx;
- }
- }
-
- .row{
- width: 100%;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- }
-
- .noOrder{
- width: 100vw;
- height: 30vh;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- font-size: 40rpx;
- color: #999999;
- }
-
-
- .feedbackconent-input::-webkit-input-placeholder {
- color: red;
- font-size: 30rpx;
- }
-
- </style>
|