Browse Source

提交设置代码

chenyi406 4 years ago
parent
commit
4ac84304ea

+ 0 - 47
public/common.css

@@ -1,47 +0,0 @@
-a {
-	text-decoration: none;
-}
-
-/*自定义公共样式*/
-html,
-body {
-	margin: 0;
-	padding: 0;
-	height: 100%;
-	width: 100%;
-	overflow: hidden;
-}
-
-.zy-module {
-	overflow: hidden;
-	box-sizing: border-box;
-	border-radius: 5px;
-	width: 100%;
-	background: white;
-	padding: 20px;
-	margin-bottom: 20px;
-}
-
-.zy-template {
-	width: 100%;
-}
-
-.zy-main-title {
-	width: 100%;
-	height: 20px;
-	font-size: 15px;
-	overflow: hidden;
-	line-height: 20px;
-	margin-bottom: 20px;
-	box-sizing: border-box;
-}
-
-.zy-main-title::after {
-	border-radius: 5px;
-	content: "";
-	width: 4px;
-	height: 100%;
-	background: #0054FE;
-	float: left;
-	margin-right: 10px;
-}

BIN
public/favicon.ico


+ 1 - 1
public/index.html

@@ -5,7 +5,7 @@
 		<meta http-equiv="X-UA-Compatible" content="IE=edge">
 		<meta name="viewport" content="width=device-width,initial-scale=1.0">
 		<title>Tools</title>
-		<link rel="stylesheet" href="common.css">
+		<link rel="stylesheet" href="static/css/common.css">
 		<script type="text/javascript" src="https://webapi.amap.com/maps?v=1.4.15&key=ddbf8bc912a1c79be34e7d646f8fd726"></script>
 	</head>
 	<body>

+ 59 - 0
public/static/css/common.css

@@ -0,0 +1,59 @@
+a {
+    text-decoration: none;
+}
+
+::-webkit-scrollbar {
+    width: 7px;
+}
+
+::-webkit-scrollbar-thumb {
+    background: #b9b9b9;
+    border-radius: 10px;
+}
+
+::-webkit-scrollbar-track-piece {
+    background: transparent;
+}
+
+/*自定义公共样式*/
+html, body {
+    margin: 0;
+    padding: 0;
+    height: 100%;
+    width: 100%;
+    overflow: hidden;
+}
+
+.zy-module {
+    overflow: hidden;
+    box-sizing: border-box;
+    border-radius: 5px;
+    width: 100%;
+    background: white;
+    padding: 20px;
+    margin-bottom: 20px;
+}
+
+.zy-template {
+    width: 100%;
+}
+
+.zy-main-title {
+    width: 100%;
+    height: 20px;
+    font-size: 15px;
+    overflow: hidden;
+    line-height: 20px;
+    margin-bottom: 20px;
+    box-sizing: border-box;
+}
+
+.zy-main-title::after {
+    border-radius: 5px;
+    content: "";
+    width: 4px;
+    height: 100%;
+    background: #0054FE;
+    float: left;
+    margin-right: 10px;
+}

+ 32 - 31
src/router/index.js

@@ -10,40 +10,41 @@ import Set from "../views/devices/set";
 Vue.use(VueRouter);
 
 const routes = [{
-		path: "/",
-		name: "Layout",
-		component: Layout,
-		children: [{
-				path: "/users",
-				name: "Users",
-				component: Users
-			},
-			{
-				path: "/devices",
-				name: "Devices",
-				component: Devices
-			},
-			{
-				path: "/map",
-				name: "Map",
-				component: Map
-			},
-			{
-				path: "/set",
-				name: "Set",
-				component: Set
-			}
-		]
-	},
-	{
-		path: "/login",
-		name: "Login",
-		component: Login,
-	}
+    path: "/",
+    name: "Layout",
+    component: Layout,
+    children: [
+        {
+            path: "/users",
+            name: "Users",
+            component: Users
+        },
+        {
+            path: "/devices",
+            name: "Devices",
+            component: Devices
+        },
+        {
+            path: "/map",
+            name: "Map",
+            component: Map
+        },
+        {
+            path: "/set",
+            name: "Set",
+            component: Set
+        }
+    ]
+},
+    {
+        path: "/login",
+        name: "Login",
+        component: Login,
+    }
 ];
 
 const router = new VueRouter({
-	routes
+    routes
 });
 
 export default router;

+ 0 - 57
src/static/js/AxiosCfg.js

@@ -1,57 +0,0 @@
-//Http配置
-import Axios from 'axios'
-import {
-	Message
-} from 'element-ui'
-import router from "../../router"
-import TokenManager from "./TokenManager"
-
-Axios.defaults.timeout = 10000; // 超时时间
-Axios.defaults.headers['verify'] = 'mqtt'; // 验证
-Axios.defaults.headers['Content-Type'] = `application/x-www-form-urlencoded`;
-
-/**
- * 拦截http请求
- */
-Axios.interceptors.request.use(config => {
-	// 判断是否存在token,如果存在的话,则每个http header都加上token
-	try {
-		const obj = JSON.parse(TokenManager.getToken());
-		config.headers['token'] = obj.token;
-	} catch {
-		return config;
-	}
-	return config;
-});
-
-/**
- * 拦截http响应
- */
-Axios.interceptors.response.use(res => {
-	const status = res.data.status; //状态码
-	switch (status) {
-		case 300: //警告
-			Message.warning({
-				message: res.data.msg
-			});
-			return Promise.reject(res.data);
-		case 401: //登录
-			Message.warning({
-				message: "验证信息过期,请重新登录",
-				duration: 5000
-			});
-			router.replace("/login");
-			return Promise.reject(res.data);
-		case 500: //服务器错误
-			Message.error({
-				message: "服务器开小差了"
-			});
-			return Promise.reject(res.data);
-		default:
-			return res.data;
-	}
-}, error => {
-	return Promise.reject(error)
-});
-
-export default Axios

+ 57 - 0
src/static/js/axiosCfg.js

@@ -0,0 +1,57 @@
+//Http配置
+import Axios from 'axios'
+import {Message} from 'element-ui'
+import router from "../../router"
+import TokenManager from "./TokenManager"
+
+Axios.defaults.timeout = 10000; // 超时时间
+Axios.defaults.headers['verify'] = 'bms'; // 验证
+Axios.defaults.headers['Content-Type'] = `application/x-www-form-urlencoded`;
+
+/**
+ * 拦截http请求
+ */
+Axios.interceptors.request.use(config => {
+    // 判断是否存在token,如果存在的话,则每个http header都加上token
+    try {
+        const obj = JSON.parse(TokenManager.getToken());
+        config.headers['token'] = obj.token;
+    } catch {
+        return config;
+    }
+    return config;
+});
+
+
+/**
+ * 拦截http响应
+ */
+Axios.interceptors.response.use(res => {
+    const status = res.data.status; //状态码
+    switch (status) {
+        case 300: //警告
+            Message.warning({
+                message: res.data.msg
+            });
+            return;
+        case 401: //权限不足
+            Message.warning({
+                message: "验证信息过期,请重新登录",
+                duration: 5000
+            });
+            router.replace("/login");
+            return;
+        //服务器错误
+        case 500:
+            Message.error({
+                message: "服务器开小差了"
+            });
+            return;
+        default:
+            return res.data;
+    }
+}, error => {
+    return Promise.reject(error)
+});
+
+export default Axios

+ 7 - 7
src/static/js/global.js

@@ -15,17 +15,17 @@ const URL = {
     //查询设备详情
     getDeviceDetail: server + "device/getDetailByClientId.do",
 
-	//设置音量
+    //设置音量
     setVolume: server + "set/volume.do",
     //设置定位频率
-	setGpsRate: server + "set/gpsRate.do",
+    setGpsRate: server + "set/gpsRate.do",
     //自动接听
-	setAutoAnswer: server + "set/autoAnswer.do",
-	//持续定位
-	setContinue: server + "set/continue.do",
-	//发送消息
+    setAutoAnswer: server + "set/autoAnswer.do",
+    //持续定位
+    setContinue: server + "set/continue.do",
+    //发送消息
     setNew: server + "set/news.do",
-	//紧急呼叫
+    //紧急呼叫
     setSos: server + "set/sos.do",
 
     //webSocket 地址

+ 10 - 20
src/static/js/http.js

@@ -1,12 +1,9 @@
 import Vue from "vue";
-import Axios from "./AxiosCfg";
+import Axios from "./axiosCfg";
 import Qs from "qs";
-import {
-    Loading
-} from "element-ui";
+import {Loading} from "element-ui";
 
 let loading; //加载框
-let lock = false; //重复提交锁
 
 /**
  * 打开加载框
@@ -24,18 +21,16 @@ function openLoad() {
 /**
  * 关闭加载框
  */
-function closeLoad(withLock) {
-    if (withLock === true) lock = false;
-    //关闭加载框
-    loading.close();
+function closeLoad() {
+    if (loading != null) {
+        loading.close();
+    }
 }
 
 /**
  * Post请求
  */
 Vue.prototype.Post = function (url, data) {
-    if (lock) return;
-    lock = true;//加锁
     //打开加载框
     openLoad();
     //发送请求
@@ -45,14 +40,12 @@ Vue.prototype.Post = function (url, data) {
                 resolve(res);
             })
             .catch(res => {
-                if (typeof reject == 'function') {
+                if (reject != null) {
                     reject(res);
                 }
-                console.log(res);
             })
             .finally(() => {
-                //关闭加载框
-                closeLoad(true);
+                closeLoad();
             })
     });
 };
@@ -68,19 +61,16 @@ Vue.prototype.Get = function (url, data) {
             params: data
         })
             .then(function (res) {
-                closeLoad(); //关闭加载框
                 resolve(res);
             })
             .catch((res) => {
-                if (typeof reject == 'function') {
+                if (reject != null) {
                     reject(res);
                 }
-                console.log(res);
-                closeLoad(); //关闭加载框
             })
             .finally(() => {
                 //关闭加载框
-                closeLoad(true);
+                closeLoad();
             })
     });
 };

+ 20 - 19
src/views/devices/devices.vue

@@ -5,12 +5,6 @@
                 <el-form-item label="设备码:" class="form-item">
                     <el-input v-model="condition.num" size="small"></el-input>
                 </el-form-item>
-                <el-form-item label="状态:" class="form-item">
-                    <el-select v-model="condition.status" placeholder="请选择状态" size="small" value="-1">
-                        <el-option label="注册完成" value="1"></el-option>
-                        <el-option label="未注册" value="2"></el-option>
-                    </el-select>
-                </el-form-item>
                 <el-form-item class="form-item">
                     <el-button type="primary" size="small" @click="submit">查询</el-button>
                 </el-form-item>
@@ -18,22 +12,16 @@
         </div>
 
         <div class="zy-template_table">
-            <el-table :data="page.records" max-height="600" stripe size="small" header-cell-class-name="header-cell">
-                <el-table-column prop="num" label="设备码" width="150"/>
-                <el-table-column prop="clientId" label="MQTT-clientId" width="250"/>
-                <el-table-column prop="password" label="MQTT-password" width="250"/>
-                <el-table-column prop="tags" label="权限" width="100"/>
-                <el-table-column prop="status" label="状态" width="120">
-                    <template slot-scope="scope">
-                        <span>{{ scope.row.status===1?"注册完成":"未注册" }}</span>
-                    </template>
-                </el-table-column>
+            <el-table :data="page.records" max-height="600" stripe size="small" header-cell-class-name="header-cell"
+                      style="width: 100%">
+                <el-table-column prop="num" label="设备码" width="180"/>
+                <el-table-column prop="clientId" label="MQTT-clientId" width="300"/>
+                <el-table-column prop="password" label="MQTT-password" width="300"/>
                 <el-table-column prop="groupId" label="设备组" width="100"/>
-                <el-table-column prop="createTime" label="创建时间" width="150"/>
+                <el-table-column prop="createTime" label="创建时间" width="180"/>
                 <el-table-column label="操作" width="100">
                     <template slot-scope="scope">
-                        <el-button @click="handleView(scope.row)" type="text" size="small">查看</el-button>
-                        <el-button @click="handleSet(scope.row)" type="text" size="small">设置</el-button>
+                        <el-button @click="handleSet(scope.row.clientId)" type="text" size="small">设置</el-button>
                     </template>
                 </el-table-column>
             </el-table>
@@ -72,6 +60,7 @@
                 };
                 this.getDeviceList(params);
             },
+
             /**
              * 分页点击事件
              */
@@ -93,6 +82,18 @@
                 this.Post(this.Global.getDeviceList, params).then(res => {
                     that.page = res.data;
                 })
+            },
+
+            /**
+             * 跳转至设置页面
+             */
+            handleSet: function (deviceId) {
+                this.$router.push({
+                    name: 'Set',
+                    params: {
+                        deviceId: deviceId
+                    }
+                })
             }
         }
     };

+ 356 - 349
src/views/devices/set.vue

@@ -1,385 +1,392 @@
 <template>
-	<div class="zy-template">
-		<div class="left">
-			<div class="zy-main-title">基本信息</div>
-			<div class="left__baseInfo zy-module">
-				<el-form label-width="80px">
-					<el-form-item label="设备号:" class="form-item">
-						<el-input :value="device.num" size="small" disabled />
-					</el-form-item>
-					<el-form-item label="设备ID:" class="form-item">
-						<el-input :value="device.clientId" size="small" disabled />
-					</el-form-item>
-					<el-form-item label="设备状态:" class="form-item">
-						<el-input :value="device.status===1?'已注册':'未注册'" size="small" disabled />
-					</el-form-item>
-				</el-form>
-			</div>
+    <div class="zy-template">
+        <div class="left">
+            <div class="zy-main-title">基本信息</div>
+            <div class="left__baseInfo zy-module">
+                <el-form label-width="80px">
+                    <el-form-item label="设备号:" class="form-item">
+                        <el-input :value="device.num" size="small" disabled/>
+                    </el-form-item>
+                    <el-form-item label="设备ID:" class="form-item">
+                        <el-input :value="device.clientId" size="small" disabled/>
+                    </el-form-item>
+                    <el-form-item label="设备状态:" class="form-item">
+                        <el-input :value="device.status===1?'已注册':'未注册'" size="small" disabled/>
+                    </el-form-item>
+                </el-form>
+            </div>
 
-			<div class="zy-main-title">设备调试</div>
-			<el-collapse accordion class="left__set zy-module" value="1">
-				<el-collapse-item title="基础设置" name="1">
-					<el-form label-width="80px">
-						<el-form-item label="自动接听:">
-							<el-switch v-model="baseSet.autoAnswer" active-color="#13ce66" inactive-color="#ff4949"
-								active-text="开" inactive-text="关" :active-value="1" :inactive-value="0"
-								@change="setAutoAnswer">
-							</el-switch>
-						</el-form-item>
-						<el-form-item label="连续定位:">
-							<el-switch v-model="baseSet.highFreq" active-color="#13ce66" inactive-color="#ff4949"
-								active-text="开" inactive-text="关" :active-value="1" :inactive-value="0"
-								@change="setContinue">
-							</el-switch>
-						</el-form-item>
-						<el-form-item label="定位频率:">
-							<el-input v-model="baseSet.gpsRate" size="small" class="input" />
-						</el-form-item>
-						<el-button type="primary" size="small" class="button" @click="setGpsRate"
-							:disabled="submitFlag">保存</el-button>
-					</el-form>
-				</el-collapse-item>
+            <div class="zy-main-title">设备调试</div>
+            <el-collapse accordion class="left__set zy-module" value="1">
+                <el-collapse-item title="基础设置" name="1">
+                    <el-form label-width="80px">
+                        <el-form-item label="自动接听:">
+                            <el-switch v-model="baseSet.autoAnswer" active-color="#13ce66" inactive-color="#ff4949"
+                                       active-text="开" inactive-text="关" :active-value="1" :inactive-value="0"
+                                       @change="setAutoAnswer">
+                            </el-switch>
+                        </el-form-item>
+                        <el-form-item label="连续定位:">
+                            <el-switch v-model="baseSet.highFreq" active-color="#13ce66" inactive-color="#ff4949"
+                                       active-text="开" inactive-text="关" :active-value="1" :inactive-value="0"
+                                       @change="setContinue">
+                            </el-switch>
+                        </el-form-item>
+                        <el-form-item label="定位频率:">
+                            <el-input v-model="baseSet.gpsRate" size="small" class="input"/>
+                        </el-form-item>
+                        <el-button type="primary" size="small" class="button" @click="setGpsRate"
+                                   :disabled="submitFlag">保存
+                        </el-button>
+                    </el-form>
+                </el-collapse-item>
 
-				<el-collapse-item title="音量设置" name="2">
-					<el-form label-width="80px">
-						<el-form-item label="通话音量:">
-							<el-slider v-model="baseSet.phoneVol" :max="7" :marks="marks" style="width: 350px;" />
-						</el-form-item>
-						<el-form-item label="系统音量:">
-							<el-slider v-model="baseSet.msgVol" :max="7" :marks="marks" style="width: 350px;" />
-						</el-form-item>
-						<el-form-item label="铃声音量:">
-							<el-slider v-model="baseSet.ringVol" :max="7" :marks="marks" style="width: 350px;" />
-						</el-form-item>
-						<el-button type="primary" size="small" class="button" @click="setVolume" :disabled="submitFlag">
-							保存</el-button>
-					</el-form>
-				</el-collapse-item>
+                <el-collapse-item title="音量设置" name="2">
+                    <el-form label-width="80px">
+                        <el-form-item label="通话音量:">
+                            <el-slider v-model="baseSet.phoneVol" :max="7" :marks="marks" style="width: 350px;"/>
+                        </el-form-item>
+                        <el-form-item label="系统音量:">
+                            <el-slider v-model="baseSet.msgVol" :max="7" :marks="marks" style="width: 350px;"/>
+                        </el-form-item>
+                        <el-form-item label="铃声音量:">
+                            <el-slider v-model="baseSet.ringVol" :max="7" :marks="marks" style="width: 350px;"/>
+                        </el-form-item>
+                        <el-button type="primary" size="small" class="button" @click="setVolume" :disabled="submitFlag">
+                            保存
+                        </el-button>
+                    </el-form>
+                </el-collapse-item>
 
-				<el-collapse-item title="联系人设置" name="3">
-					<el-form label-width="80px">
-						<h3>SOS按键</h3>
-						<el-form-item label="姓名:">
-							<el-input v-model="baseSet.key0Name" size="small" class="input" />
-						</el-form-item>
-						<el-form-item label="手机号码:">
-							<el-input v-model="baseSet.key0Phone" size="small" class="input" />
-						</el-form-item>
-						<h3>按键1</h3>
-						<el-form-item label="姓名:">
-							<el-input v-model="baseSet.key1Name" size="small" class="input" />
-						</el-form-item>
-						<el-form-item label="手机号码:">
-							<el-input v-model="baseSet.key1Phone" size="small" class="input" />
-						</el-form-item>
-						<h3>按键2</h3>
-						<el-form-item label="姓名:">
-							<el-input v-model="baseSet.key2Name" size="small" class="input" />
-						</el-form-item>
-						<el-form-item label="手机号码:">
-							<el-input v-model="baseSet.key2Phone" size="small" class="input" />
-						</el-form-item>
-						<el-button type="primary" size="small" class="button" @click="setSos" :disabled="submitFlag">保存
-						</el-button>
-					</el-form>
-				</el-collapse-item>
+                <el-collapse-item title="联系人设置" name="3">
+                    <el-form label-width="80px">
+                        <h3>SOS按键</h3>
+                        <el-form-item label="姓名:">
+                            <el-input v-model="baseSet.key0Name" size="small" class="input"/>
+                        </el-form-item>
+                        <el-form-item label="手机号码:">
+                            <el-input v-model="baseSet.key0Phone" size="small" class="input"/>
+                        </el-form-item>
+                        <h3>按键1</h3>
+                        <el-form-item label="姓名:">
+                            <el-input v-model="baseSet.key1Name" size="small" class="input"/>
+                        </el-form-item>
+                        <el-form-item label="手机号码:">
+                            <el-input v-model="baseSet.key1Phone" size="small" class="input"/>
+                        </el-form-item>
+                        <h3>按键2</h3>
+                        <el-form-item label="姓名:">
+                            <el-input v-model="baseSet.key2Name" size="small" class="input"/>
+                        </el-form-item>
+                        <el-form-item label="手机号码:">
+                            <el-input v-model="baseSet.key2Phone" size="small" class="input"/>
+                        </el-form-item>
+                        <el-button type="primary" size="small" class="button" @click="setSos" :disabled="submitFlag">保存
+                        </el-button>
+                    </el-form>
+                </el-collapse-item>
 
-				<el-collapse-item title="语音播报" name="5">
-					<el-form label-width="80px">
-						<el-form-item label="播报类型:">
-							<el-select placeholder="请选择" size="small" v-model="message.newsType">
-								<el-option value="1" label="实时播报" />
-								<el-option value="0" label="固定播报" />
-							</el-select>
-						</el-form-item>
-						<el-form-item label="播报时间:" v-if="message.newsType==0">
-							<el-input v-model="message.newsTime" size="small" class="input" />
-						</el-form-item>
-						<el-form-item label="播报内容:">
-							<el-input type="textarea" v-model="message.news" style="width: 250px" />
-						</el-form-item>
-						<el-button type="primary" size="small" class="button" @click="setNews" :disabled="submitFlag">保存
-						</el-button>
-					</el-form>
-				</el-collapse-item>
-			</el-collapse>
+                <el-collapse-item title="语音播报" name="5">
+                    <el-form label-width="80px">
+                        <el-form-item label="播报类型:">
+                            <el-select placeholder="请选择" size="small" v-model="message.newsType" value="">
+                                <el-option value="1" label="实时播报"/>
+                                <el-option value="0" label="固定播报"/>
+                            </el-select>
+                        </el-form-item>
+                        <el-form-item label="播报时间:" v-if="message.newsType===0">
+                            <el-input v-model="message.newsTime" size="small" class="input"/>
+                        </el-form-item>
+                        <el-form-item label="播报内容:">
+                            <el-input type="textarea" v-model="message.news" style="width: 250px"/>
+                        </el-form-item>
+                        <el-button type="primary" size="small" class="button" @click="setNews" :disabled="submitFlag">保存
+                        </el-button>
+                    </el-form>
+                </el-collapse-item>
+            </el-collapse>
 
-		</div>
+        </div>
 
-		<div class="right">
-			<div class="zy-main-title">控制台日志</div>
-			<div class="right__console">
-				<div v-for="log in logs" class="right__console__message">
-					<p>{{log.time}}</p>
-					<p>{{log.message}}</p>
-				</div>
-			</div>
-		</div>
-	</div>
+        <div class="right">
+            <div class="zy-main-title">控制台日志</div>
+            <div class="right__console">
+                <div v-for="log in logs" class="right__console__message">
+                    <p>{{log.time}}</p>
+                    <p>{{log.message}}</p>
+                </div>
+            </div>
+        </div>
+    </div>
 </template>
 
 <script>
-	export default {
-		data() {
-			return {
-				device: {},
-				baseSet: {},
-				message: {},
-				marks: {
-					0: '0',
-					1: '1',
-					2: '2',
-					3: '3',
-					4: '4',
-					5: '5',
-					6: '6',
-					7: '7',
-				},
-				submitFlag: false, //阻止重复提交表单
-				logs: [], //mqtt接收日志
-			};
-		},
-		mounted: function() {
-			this.initWebSocket("76f7c742428b4720b363d95d8292b357");
-			this.getDeviceDetail("76f7c742428b4720b363d95d8292b357");
-			this.getDeviceBaseSet("76f7c742428b4720b363d95d8292b357");
-		},
-		methods: {
+    export default {
+        data() {
+            return {
+                device: {
+                    num:""
+                },
+                baseSet: {},
+                message: {},
+                marks: {
+                    0: '0',
+                    1: '1',
+                    2: '2',
+                    3: '3',
+                    4: '4',
+                    5: '5',
+                    6: '6',
+                    7: '7',
+                },
+                submitFlag: false, //阻止重复提交表单
+                logs: [], //mqtt接收日志
+            };
+        },
+        activated() {
+            const deviceId = this.$route.params.deviceId;
+            if (!deviceId) {
+                this.$router.push({name: "Devices"});
+            }
+            this.initWebSocket(deviceId);
+            this.getDeviceDetail(deviceId);
+            this.getDeviceBaseSet(deviceId);
+        },
+        methods: {
 
-			/** 重复提交锁
-			 * @param {Object} flag 0 解锁 1 加锁
-			 */
-			lock: function(flag) {
-				this.submitFlag = flag === 1 ? true : false;
-			},
-			/**
-			 * 查询设备详情
-			 */
-			getDeviceDetail: function(clientId) {
-				const param = {
-					clientId: clientId,
-				};
-				this.Get(this.Global.getDeviceDetail, param).then(res => {
-					this.device = res.data;
-				})
-			},
+            /** 重复提交锁
+             * @param {Object} flag 0 解锁 1 加锁
+             */
+            lock: function (flag) {
+                this.submitFlag = flag === 1;
+            },
+            /**
+             * 查询设备详情
+             */
+            getDeviceDetail: function (clientId) {
+                const param = {
+                    clientId: clientId,
+                };
+                this.Get(this.Global.getDeviceDetail, param).then(res => {
+                    this.device = res.data;
+                })
+            },
 
-			/**
-			 * 获取设备
-			 */
-			getDeviceBaseSet: function(clientId) {
-				const param = {
-					deviceId: clientId,
-				};
-				this.Get(this.Global.getBaseSet, param).then(res => {
-					this.baseSet = res.data;
-					console.log(res.data)
-				})
-			},
+            /**
+             * 获取设备
+             */
+            getDeviceBaseSet: function (clientId) {
+                const param = {
+                    deviceId: clientId,
+                };
+                this.Get(this.Global.getBaseSet, param).then(res => {
+                    this.baseSet = res.data;
+                    console.log(res.data)
+                })
+            },
 
-			/**
-			 * 设置音量
-			 */
-			setVolume: function() {
-				const param = {
-					deviceId: this.device.clientId,
-					msgVol: this.baseSet.msgVol,
-					ringVol: this.baseSet.ringVol,
-					phoneVol: this.baseSet.phoneVol
-				}
-				this.postGeneral(this.Global.setVolume, param);
-			},
-			/**
-			 * 自动接听
-			 */
-			setAutoAnswer: function(tag) {
-				const param = {
-					deviceId: this.device.clientId,
-					autoAnswer: tag
-				}
-				this.postGeneral(this.Global.setAutoAnswer, param);
-			},
+            /**
+             * 设置音量
+             */
+            setVolume: function () {
+                const param = {
+                    deviceId: this.device.clientId,
+                    msgVol: this.baseSet.msgVol,
+                    ringVol: this.baseSet.ringVol,
+                    phoneVol: this.baseSet.phoneVol
+                };
+                this.postGeneral(this.Global.setVolume, param);
+            },
+            /**
+             * 自动接听
+             */
+            setAutoAnswer: function (tag) {
+                const param = {
+                    deviceId: this.device.clientId,
+                    autoAnswer: tag
+                };
+                this.postGeneral(this.Global.setAutoAnswer, param);
+            },
 
-			/**
-			 * 定位频率
-			 */
-			setGpsRate: function() {
-				const param = {
-					deviceId: this.device.clientId,
-					gpsRate: this.baseSet.gpsRate
-				}
-				this.postGeneral(this.Global.setGpsRate, param);
-			},
+            /**
+             * 定位频率
+             */
+            setGpsRate: function () {
+                const param = {
+                    deviceId: this.device.clientId,
+                    gpsRate: this.baseSet.gpsRate
+                };
+                this.postGeneral(this.Global.setGpsRate, param);
+            },
 
-			/**
-			 * 连续定位
-			 */
-			setContinue: function(tag) {
-				const param = {
-					deviceId: this.device.clientId,
-					highFreq: tag
-				}
-				this.postGeneral(this.Global.setContinue, param);
-			},
+            /**
+             * 连续定位
+             */
+            setContinue: function (tag) {
+                const param = {
+                    deviceId: this.device.clientId,
+                    highFreq: tag
+                };
+                this.postGeneral(this.Global.setContinue, param);
+            },
 
-			/**
-			 * 紧急呼叫 
-			 */
-			setSos: function() {
-				const param = {
-					deviceId: "33f1b050b65b4f208704d9061199a359",
-					key0Name: this.baseSet.key0Name,
-					key0Phone: this.baseSet.key0Phone,
-					key1Name: this.baseSet.key1Name,
-					key1Phone: this.baseSet.key1Phone,
-					key2Name: this.baseSet.key2Name,
-					key2Phone: this.baseSet.key2Phone,
-				}
-				this.postGeneral(this.Global.setSos, param);
-			},
+            /**
+             * 紧急呼叫
+             */
+            setSos: function () {
+                const param = {
+                    deviceId: "33f1b050b65b4f208704d9061199a359",
+                    key0Name: this.baseSet.key0Name,
+                    key0Phone: this.baseSet.key0Phone,
+                    key1Name: this.baseSet.key1Name,
+                    key1Phone: this.baseSet.key1Phone,
+                    key2Name: this.baseSet.key2Name,
+                    key2Phone: this.baseSet.key2Phone,
+                };
+                this.postGeneral(this.Global.setSos, param);
+            },
 
-			/**
-			 *  语音播报
-			 */
-			setNews: function() {
-				const param = {
-					deviceId: "33f1b050b65b4f208704d9061199a359",
-					newsType: this.message.newsType,
-					newsTime: this.message.newsTime,
-					news: this.message.news,
-				}
-				console.log(param)
-				this.lock(1);
-				this.Post(this.Global.setNews, param).then(res => {
-					this.message = {};
-				}).finally(() => {
-					this.lock(0);
-				})
-			},
+            /**
+             *  语音播报
+             */
+            setNews: function () {
+                const param = {
+                    deviceId: "33f1b050b65b4f208704d9061199a359",
+                    newsType: this.message.newsType,
+                    newsTime: this.message.newsTime,
+                    news: this.message.news,
+                };
+                this.lock(1);
+                this.Post(this.Global.setNews, param).then(() => {
+                    this.message = {};
+                }).finally(() => {
+                    this.lock(0);
+                })
+            },
 
 
-			/**
-			 * 通用发送设置请求
-			 * @param {Object} url 请求 地址
-			 * @param {Object} param 请求参数
-			 */
-			postGeneral(url, param) {
-				this.lock(1);
-				this.Post(url, param).then(res => {
-					this.getDeviceBaseSet(param.deviceId);
-				}).finally(() => {
-					this.lock(0);
-				})
-			},
+            /**
+             * 通用发送设置请求
+             * @param {Object} url 请求 地址
+             * @param {Object} param 请求参数
+             */
+            postGeneral(url, param) {
+                this.lock(1);
+                this.Post(url, param).then(() => {
+                    this.getDeviceBaseSet(param.deviceId);
+                }).finally(() => {
+                    this.lock(0);
+                })
+            },
 
-			/**
-			 * 初始化WebSocket连接
-			 */
-			initWebSocket: function(clientId) {
-				const that = this;
-				const socket = new WebSocket(this.Global.webSocket + clientId);
-				socket.onmessage = function(evt) {
-					const jsonObj = JSON.parse(evt.data);
-					const message = {
-						m: jsonObj.m,
-						r: jsonObj.r,
-						t: jsonObj.t,
-						data: jsonObj.data
-					}
-					const object = {
-						time: that.formatDate(new Date()),
-						message: JSON.stringify(message, null, 4)
-					}
-					that.logs.push(object);
-				}
-			},
-			/**
-			 * 格式化时间
-			 */
-			formatDate: function(date) {
-				const d = new Date(date)
-				const y = d.getFullYear() // 年份
-				const m = (d.getMonth() + 1).toString().padStart(2, '0') // 月份
-				const r = d.getDate().toString().padStart(2, '0') // 日子
-				const hh = d.getHours().toString().padStart(2, '0') // 小时
-				const mm = d.getMinutes().toString().padStart(2, '0') // 分钟
-				const ss = d.getSeconds().toString().padStart(2, '0') // 秒
-				return `${y}-${m}-${r} ${hh}:${mm}:${ss}` // es6 字符串模板
-			}
-		},
+            /**
+             * 初始化WebSocket连接
+             */
+            initWebSocket: function (clientId) {
+                const that = this;
+                const socket = new WebSocket(this.Global.webSocket + clientId);
+                socket.onmessage = function (evt) {
+                    const jsonObj = JSON.parse(evt.data);
+                    const message = {
+                        m: jsonObj.m,
+                        r: jsonObj.r,
+                        t: jsonObj.t,
+                        data: jsonObj.data
+                    };
+                    const object = {
+                        time: that.formatDate(new Date()),
+                        message: JSON.stringify(message, null, 4)
+                    };
+                    that.logs.push(object);
+                }
+            },
+            /**
+             * 格式化时间
+             */
+            formatDate: function (date) {
+                const d = new Date(date);
+                const y = d.getFullYear(); // 年份
+                const m = (d.getMonth() + 1).toString().padStart(2, '0'); // 月份
+                const r = d.getDate().toString().padStart(2, '0');// 日
+                const hh = d.getHours().toString().padStart(2, '0');// 小时
+                const mm = d.getMinutes().toString().padStart(2, '0'); // 分钟
+                const ss = d.getSeconds().toString().padStart(2, '0');// 秒
+                return `${y}-${m}-${r} ${hh}:${mm}:${ss}` // es6 字符串模板
+            }
+        },
 
-	}
+    }
 </script>
 
 <style scoped lang="scss">
-	.zy-template {
-		overflow: hidden;
-		height: 100%;
+    .zy-template {
+        overflow: hidden;
+        height: 100%;
 
-		.left {
-			width: 49%;
-			float: left;
-			height: 100%;
-			overflow-y: scroll;
+        .left {
+            width: 49%;
+            float: left;
+            height: 100%;
+            overflow-y: scroll;
 
-			&__baseInfo {
-				& .el-form-item {
-					margin-bottom: 10px;
-					width: 300px;
-				}
-			}
+            &__baseInfo {
+                & .el-form-item {
+                    margin-bottom: 10px;
+                    width: 300px;
+                }
+            }
 
-			&__set {
-				& .input {
-					width: 230px;
-				}
+            &__set {
+                & .input {
+                    width: 230px;
+                }
 
-				& .el-form-item {
-					margin-bottom: 10px;
-				}
+                & .el-form-item {
+                    margin-bottom: 10px;
+                }
 
-				& .el-slider {
-					margin-left: 10px;
-				}
-			}
+                & .el-slider {
+                    margin-left: 10px;
+                }
+            }
 
-			& .button {
-				margin-left: 80px;
-				margin-top: 20px;
-			}
-		}
+            & .button {
+                margin-left: 80px;
+                margin-top: 20px;
+            }
+        }
 
-		.right {
-			width: 49%;
-			float: right;
-			height: 100%;
+        .right {
+            width: 49%;
+            float: right;
+            height: 100%;
 
-			&__console {
-				box-sizing: border-box;
-				padding: 10px;
-				overflow-x: hidden;
-				overflow-y: scroll;
-				word-wrap: break-word;
-				background-color: white;
-				width: 100%;
-				height: 100%;
-				border-radius: 5px;
+            &__console {
+                box-sizing: border-box;
+                padding: 10px;
+                overflow-x: hidden;
+                overflow-y: scroll;
+                word-wrap: break-word;
+                background-color: white;
+                width: 100%;
+                height: 100%;
+                border-radius: 5px;
 
-				&__message {
-					font-size: 14px;
-					width: 100%;
-					margin-bottom: 10px;
+                &__message {
+                    font-size: 14px;
+                    width: 100%;
+                    margin-bottom: 10px;
 
-					& p {
-						white-space: pre-wrap;
-						margin: 5px 0;
-					}
+                    & p {
+                        white-space: pre-wrap;
+                        margin: 5px 0;
+                    }
 
-					& p:first-child {
-						color: #39b54a;
-					}
-				}
-			}
-		}
-	}
+                    & p:first-child {
+                        color: #39b54a;
+                    }
+                }
+            }
+        }
+    }
 </style>

+ 0 - 13
src/views/layout/layout.vue

@@ -130,17 +130,4 @@
             }
         }
     }
-
-    .el-main::-webkit-scrollbar {
-        width: 7px;
-    }
-
-    .el-main::-webkit-scrollbar-thumb {
-        background: #9B9B9B;
-        border-radius: 10px;
-    }
-
-    .el-main::-webkit-scrollbar-track-piece {
-        background: transparent;
-    }
 </style>