123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <script>
- export default {
- onLaunch: function() {
- console.log('App Launch')
- // const { aplus_queue } = window;
- // console.log("aplus_queue" , aplus_queue)
- // aplus_queue.push({
- // action: 'aplus.sendPV',
- // arguments: [{ is_auto: false }]
- // });
- },
- 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>
|