|
@@ -38,7 +38,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="AliasName" align="center" label="名称">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="Mac" align="center" label="mac"> </el-table-column>
|
|
|
+ <el-table-column prop="Mac" align="center" label="MAC"> </el-table-column>
|
|
|
|
|
|
<el-table-column label="操作" align="center" width="100px">
|
|
|
<template slot-scope="scope">
|
|
@@ -99,25 +99,28 @@
|
|
|
:formatter="typeFormatter"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="mac" align="center" label="mac"> </el-table-column>
|
|
|
+ <el-table-column prop="mac" align="center" label="MAC"> </el-table-column>
|
|
|
<el-table-column label="操作" align="center" width="140px">
|
|
|
<template slot-scope="scope" style='width:120px'>
|
|
|
<div style='display:flex;flex-direction:column;justify-items: center;align-items:center'>
|
|
|
<el-button
|
|
|
:disabled="buttonLinkFlag"
|
|
|
class="xl_d_button"
|
|
|
- style='width:70px'
|
|
|
+ style='width:auto'
|
|
|
size="mini"
|
|
|
slot="reference"
|
|
|
@click="linkJudge(scope.$index, scope.row, scope.row.connect)"
|
|
|
>
|
|
|
<span v-if="scope.row.connect">断开连接</span
|
|
|
><span v-if="!scope.row.connect">连接</span>
|
|
|
+ <!-- <span >断开连接</span
|
|
|
+ > -->
|
|
|
</el-button>
|
|
|
-
|
|
|
+ <!-- v-show="scope.row.addFlag" -->
|
|
|
<el-button
|
|
|
style="margin-top: 10px;width:100px;margin-right:2px"
|
|
|
v-show="scope.row.addFlag"
|
|
|
+
|
|
|
:disabled="buttonLinkFlag"
|
|
|
class="xl_d_button"
|
|
|
size="mini"
|
|
@@ -174,7 +177,7 @@
|
|
|
</el-select>
|
|
|
</div>
|
|
|
<div class="equipment_class">
|
|
|
- <div style="margin-left: 40px; width: 120px">设备mac: </div>
|
|
|
+ <div style="margin-left: 40px; width: 150px">设备MAC: </div>
|
|
|
<el-input
|
|
|
style="width: 100%; margin-right: 40px"
|
|
|
v-model="mac"
|
|
@@ -217,7 +220,7 @@
|
|
|
</el-select>
|
|
|
</div>
|
|
|
<div class="equipment_class">
|
|
|
- <div style="margin-left: 40px; width: 120px">设备mac: </div>
|
|
|
+ <div style="margin-left: 40px; width: 125px">设备MAC: </div>
|
|
|
<el-input
|
|
|
style="width: 100%; margin-right: 40px"
|
|
|
v-model="mac"
|
|
@@ -279,7 +282,7 @@
|
|
|
/>
|
|
|
</div>
|
|
|
<p class="eweima">
|
|
|
- 提示:蓝牙基站mac填写,可以选择蓝牙基站上附带的二维码图片,也可以手动书写
|
|
|
+ 提示:蓝牙基站MAC填写,可以选择蓝牙基站上附带的二维码图片,也可以手动书写
|
|
|
</p>
|
|
|
<button class="sweep">
|
|
|
<input
|
|
@@ -291,7 +294,7 @@
|
|
|
</button>
|
|
|
<span class="min_equi">
|
|
|
<div class="equipment_class">
|
|
|
- <div style="margin-left: 40px; width: 220px">填写蓝牙基站mac: </div>
|
|
|
+ <div style="margin-left: 40px; width: 220px">填写蓝牙基站MAC: </div>
|
|
|
<el-input v-model="baseStationDes"></el-input>
|
|
|
|
|
|
<!-- <el-select
|
|
@@ -501,7 +504,7 @@ export default {
|
|
|
//判断选择框是否选了mac了
|
|
|
if (this.baseStationDes == "") {
|
|
|
this.visiblePop = false;
|
|
|
- this.$message.info("尚未填写蓝牙基站mac");
|
|
|
+ this.$message.info("尚未填写蓝牙基站MAC");
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -888,7 +891,7 @@ export default {
|
|
|
aliasName: this.aliasName,
|
|
|
};
|
|
|
if (this.mac == "") {
|
|
|
- this.$message.info("设备mac不能为空");
|
|
|
+ this.$message.info("设备MAC不能为空");
|
|
|
return;
|
|
|
}
|
|
|
if (this.aliasName == "") {
|