123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="">
- <web-view :src="'http://localhost:8081/vuefiv/#/?siteId='+siteId" allow></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- siteId:"",
- deviceData:[],
- modalName: null,
- };
- },
-
- onLoad:function(option){
- // console.log(111)
- // console.log(option)
- this.siteId = option.siteId
- },
- mounted () {
- },
- methods: {
- }
- }
- </script>
- <style lang="scss">
- .cu-list.menu-avatar>.cu-item .content>uni-view:first-child {
- font-size: 32rpx;
- }
- .num {
- font-size: 30rpx;
- color: #666;
- }
- </style>
|