123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <script>
- export default {
- onLaunch: function() {
- // console.log("App Launch");
- // this.checkArguments(); // 检测启动参数
- // if (uni.getSystemInfoSync().platform == 'android') {
- // // 重点是以下: 一定要监听后台恢复 !一定要
- // plus.globalEvent.addEventListener('newintent', e => {
- // this.checkArguments(); // 检测启动参数
- // });
- // }
- },
- onShow: function() {
- // console.log("App Show");
- },
- onHide: function() {
- // console.log("App Hide");
- },
- methods: {
- // 监测是否传参数
- checkArguments() {
- try {
- if (uni.getSystemInfoSync().platform === 'android') {
- // 接收第三方app传递的参数 extra;
- if (plus.runtime.arguments) {
- // patParams: 院区,病区, 床号
- const { patParams } = JSON.parse(plus.runtime.arguments);
- uni.setStorageSync('patParams', patParams);
- }
- }
- } catch (e) {}
- }
- }
- };
- </script>
- <style lang="less">
- /*每个页面公共css */
-
- body,
- uni-app,
- uni-page,
- uni-page-wrapper,
- uni-page-body {
- height: 100%;
- font-size: 20rpx;
- line-height: 30rpx;
- background-color: #F5F6FA;
- }
- view,
- label,
- scroll-view {
- box-sizing: border-box;
- }
- // 底部固定的按钮
- .fixed-buttom-btn {
- position: fixed;
- left: 0;
- bottom: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 12.5rpx;
- width: 100%;
- height: 75rpx;
- background-color: #3377FF;
- .btn-text {
- flex: 1;
- font-size: 22.5rpx;
- color: #fff;
- text-align: center;
- }
- .btn-text.cancle {
- line-height: 76.25rpx;
- background-color: #FFFFFF;
- color: #3377FF;
- }
- }
- // 新建情境样式start
- .creatingSituations {
- .title {
- padding-bottom: 35rpx;
- padding-left: 25rpx;
- font-size: 30rpx;
- line-height: 45rpx;
- color: #292C33;
- }
- }
- // 新建情境样式end
- // 查核地图列表样式start
- .check-map-list {
- overflow: hidden;
- padding: 0 25rpx;
- .item {
- position: relative;
- overflow: hidden;
- margin-bottom: 25rpx;
- border-radius: 5rpx;
- padding-top: 16.25rpx;
- padding-bottom: 0;
- width: 100%;
- background-color: #fff;
- box-shadow: 0 3.75rpx 12.5rpx 0 rgba(0, 13, 51, 0.1);
- }
- }
- // 查核地图列表样式end
- </style>
|