监控视频

This commit is contained in:
shijing 2022-11-08 14:26:21 +08:00
parent 5ce1147080
commit c5b9718557
1 changed files with 7 additions and 2 deletions

View File

@ -39,7 +39,8 @@
</div> </div>
--> -->
<div class="login-oauth"> <div class="login-oauth">
<el-button type="success" @click="appDown">安卓APP</el-button> <el-button type="success" @click="appDown" style="background-color:#2cd4f9;border-color:#2cd4f9">安卓APP</el-button>
<el-button type="primary" @click="Monitor" style="background-color:orange;border-color:orange">监控视频</el-button>
</div> </div>
</div> </div>
</div> </div>
@ -61,7 +62,8 @@
</template> </template>
<script> <script>
import passwordForm from './components/passwordForm' import { Monitor } from '@element-plus/icons-vue'
import passwordForm from './components/passwordForm'
import phoneForm from './components/phoneForm' import phoneForm from './components/phoneForm'
export default { export default {
@ -122,6 +124,9 @@
appDown() { appDown() {
this.showApp = true; this.showApp = true;
}, },
Monitor(){
window.open('http://localhost:5515/')
},
configDark(){ configDark(){
this.config.dark = this.config.dark ? false : true this.config.dark = this.config.dark ? false : true
}, },