| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <div id="app-demo-window-view">
- <div class="one-block-1">
- <span>
- 1. 监控电源状态
- </span>
- </div>
- <div class="one-block-2">
- <a-space>
- <p>当前状态:{{ currentStatus }}</p>
- </a-space>
- <p>* 拔掉电源,使用电池供电</p>
- <p>* 接入电源</p>
- <p>* 锁屏</p>
- <p>* 解锁</p>
- </div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- currentStatus: '无',
- };
- },
- mounted () {
- this.init();
- },
- methods: {
- init () {
- const self = this;
- self.$ipc.on('example.initPowerMonitor', (event, result) => {
- if (Object.prototype.toString.call(result) == '[object Object]') {
- self.currentStatus = result.msg;
- self.$message.info(result.msg);
- }
- })
- this.$ipc.send('example.initPowerMonitor', '');
- }
- }
- };
- </script>
- <style lang="less" scoped>
- #app-demo-window-view {
- padding: 0px 10px;
- text-align: left;
- width: 100%;
- .one-block-1 {
- font-size: 16px;
- padding-top: 10px;
- }
- .one-block-2 {
- padding-top: 10px;
- }
- }
- </style>
|