12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <template>
- <view>
- <!-- <view class="es-h-88"></view>
- <button @tap="close">关闭</button> -->
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- onLoad(options) {
- this.close();
- setTimeout(e => {
-
- //#ifdef APP-PLUS
- plus.navigator.setFullscreen(false);
-
- //#endif
- },100)
- setTimeout(e => {
- //#ifdef APP-PLUS
- plus.screen.lockOrientation("portrait-primary");
-
- //#endif
- },50)
- },
- onShow() {
-
-
-
- },
- onReady(){
-
- },
- methods: {
- close:function(){
- uni.navigateBack({
- animationType: 'fade-out',
- animationDuration: 0
- });
-
- },
- resetScreen(){
-
- plus.screen.lockOrientation("portrait-primary");
- },
- }
- }
- </script>
- <style>
-
- </style>
|