使用vue开发实现XixunPlayer的功能.
停止XixunPlayer设备
/**
* @Author: 858834013@qq.com
* @Name: stopPlayer
* @Date: 2022-04-26
* @Desc: XixunPlayer实现停止设备
...
yekong
3年前 (2022-04-26)
喜欢
使用vue开发实现XixunPlayer的功能.
XixunPlayer 实现保存html代码
<template>
<div class="saveHtml">
<el-button class="mb20...
yekong
3年前 (2022-04-26)
喜欢
使用vue开发实现XixunPlayer的功能.
XixunPlayer 获取设备音量并修改音量
/**
* @Author: 858834013@qq.com
* @Name: Volume
* @Date: 2022-04-26
* @Desc: XixunPlayer 获取...
yekong
3年前 (2022-04-26)
喜欢
使用vue开发实现XixunPlayer的功能.
实现设备重启
/**
* @Author: 858834013@qq.com
* @Name: reboot
* @Date: 2022-04-26
* @Desc: XixunPlayer实现重启
*/
<template...
yekong
3年前 (2022-04-26)
喜欢
使用vue开发XixunPlayer的功能.
实现清除播放器节目数据和文件
/**
* @Author: 858834013@qq.com
* @Name: clearPlayerTask
* @Date: 2022-04-26
* @Desc: XixunPlayer实现清除播...
yekong
3年前 (2022-04-26)
喜欢
最近需要使用vue开发XixunPlayer的功能,记录一下.实现设备的开关机
实现设备的开关机
/**
* @Author: 858834013@qq.com
* @Name: onOff
* @Date: 2022-01-18
* @Desc: XixunPlayer实现设备...
yekong
3年前 (2022-04-26)
喜欢
vue开发 status组件 根据参数显示不同的内容
/**
* @Author: 858834013@qq.com
* @Name: status
* @Date: 2022-04-23
* @Desc: 1. 待审核, 2.审核中, 3.出库中, 4.已完成
*/
<...
yekong
3年前 (2022-04-23)
喜欢
去除边线的办法
:focus {
outline: 0 !important;
}
...
yekong
3年前 (2022-04-23)
喜欢
vue后台在开发时,每次都需要手动输入账号密码很不方便,但是又不方便直接把账号密码写在页面中,所以想了一个便捷的方式,就是在开发模式下,显示账号密码,打包编译后不显示账号密码。
mounted: function() {
if (process.env.NODE_EN...
yekong
3年前 (2022-04-21)
喜欢
vue 进入指定页面定时监听,超过10分钟不操作,进入首页
export default {
data() {
return {
timer: null,
timeOut: 10 * 60 * 1000,
enterpriseId:...
yekong
3年前 (2022-04-21)
喜欢