| 123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <view>
- <view class="contentInRowL" style="margin-top: 140rpx;margin-left: 16rpx;">
- <uni-icons custom-prefix="custom-icon" color="#6E75FB" type="left" size="22" @click="fanhui"></uni-icons>
- </view>
- <view class="" style="width:750rpx;">
- <web-view :fullscreen="false" :src="webviewUrl" style="height:1380rpx;width:750rpx;"></web-view>
- </view>
- </view>
- </template>
- <script >
- export default {
- data() {
- return {
- webviewUrl:'https://br2.qihg091ew.com/ynszc.html'
- }
- },
- onLoad() {
-
- },
- methods: {
- fanhui(){
- uni.navigateBack();
- }
- }
- }
- </script>
- <style >
- .contentInRowL{
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- }
- </style>
|