1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <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";
- /*每个页面公共css */
- *{
- padding: 0;
- margin: 0;
- box-sizing: border-box;
- }
-
- .one-row{
- display: inline-block;
- white-space:nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .tdt-label{
- // display: block;
- // min-width: 100rpx;
- // width: 1;
- min-width: 300rpx;
- max-width: 500rpx;
- border-radius: 14rpx;
- padding: 15rpx !important;
- line-height: 1.3 !important;
- white-space: pre-wrap !important;
- text-align: center;
- // transform: translateX(-50%) !important;
- }
- .map-label{
- // white-space: pre-wrap;
- display: block;
-
- }
-
- </style>
|