123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <view class="weight-window">
- <web-view src="http://localhost:9090/#/monitor/weigh" @message="message"></web-view>
- </view>
- </template>
- <script>
- export default {
- props: {
- hardInfo: {},
- },
- data() {
- return {
- connection: null,
- weigh: 0,
- meter: 0,
- isConnection: false,
- }
- },
- mounted() {
- },
- destroyed() {
- },
- methods: {
- message(event){
- console.log(event);
- }
- }
- }
- </script>
- <style lang="less" scoped>
- </style>
|