| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!-- 提示 -->
- <template>
- <view class="warning">
- <view class="flex-null-box-1"></view>
- <view class="warning-text">
- 已禁止本次访问
- </view>
- <view class="warning-text">
- 您必须使用微信内置浏览器访问本页面!
- </view>
- <view class="flex-null-box-2"></view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style lang="stylus" scoped>
- .warning {
- flex:1;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- .warning-text{
- font-size:36rpx;
- line-height:60rpx;
- text-align: center;
- }
- .flex-null-box-1{
- flex:1;
- }
- .flex-null-box-2{
- flex:2;
- }
- }
- </style>
|