1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <template>
- <view class="content">
- <web-view :src="src" ></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- src: 'http://star.mstardance.com/app/starmini/index.html',
-
- }
- },
- onBackPress(options) {
- if (options.from === 'navigateBack') {
- // 当前页面不允许返回
- return true; // 返回true阻止默认行为,即不执行返回操作
- }
- // 允许返回操作
- return false;
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .logo {
- height: 200rpx;
- width: 200rpx;
- margin-top: 200rpx;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 50rpx;
- }
- .text-area {
- display: flex;
- justify-content: center;
- }
- .title {
- font-size: 36rpx;
- color: #8f8f94;
- }
- </style>
|