yinsizhngce.nvue 705 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view>
  3. <view class="contentInRowL" style="margin-top: 140rpx;margin-left: 16rpx;">
  4. <uni-icons custom-prefix="custom-icon" color="#6E75FB" type="left" size="22" @click="fanhui"></uni-icons>
  5. </view>
  6. <view class="" style="width:750rpx;">
  7. <web-view :fullscreen="false" :src="webviewUrl" style="height:1380rpx;width:750rpx;"></web-view>
  8. </view>
  9. </view>
  10. </template>
  11. <script >
  12. export default {
  13. data() {
  14. return {
  15. webviewUrl:'https://br2.qihg091ew.com/ynszc.html'
  16. }
  17. },
  18. onLoad() {
  19. },
  20. methods: {
  21. fanhui(){
  22. uni.navigateBack();
  23. }
  24. }
  25. }
  26. </script>
  27. <style >
  28. .contentInRowL{
  29. display: flex;
  30. flex-direction: row;
  31. justify-content: flex-start;
  32. }
  33. </style>