123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <view class="content">
-
- <web-view :src="durl"></web-view>
- </view>
- </template>
- <script>
-
- export default {
- data() {
- return {
- durl:"",
- }
- },
- onLoad(val) {
- this.durl=uni.getStorageSync('url');
- }
-
- }
-
-
- </script>
- <style scoped lang="scss">
- page{
- height: 100%;
- background: #ffffff;
- }
- .content{
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
-
- }
-
- </style>
|