1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <view class="">
- <web-view :src="'https://wx.ewoogi.com/appfiv/#/?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.companyCode
- this.companyCode=option.companyCode
- this.deviceType=option.deviceType
- },
- onBackPress(event){
- uni.redirectTo({
- url:'../device-Manage?deviceType=1&companyCode='+this.companyCode
- });
- return true;
- },
- 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>
|