|
@@ -157,13 +157,13 @@
|
|
|
/>
|
|
|
<el-row class="bench-button">
|
|
|
<el-col :span="5" class="btn-item" style="text-align: center"
|
|
|
- >B9NP-01</el-col
|
|
|
+ >{{ currentBench.name }}</el-col
|
|
|
>
|
|
|
<el-col :span="3" class="btn-item">
|
|
|
<img @click="connectAudioDevice('collectAudio')" src="../../images/sound.png"/>
|
|
|
</el-col>
|
|
|
- <el-col :span="3">
|
|
|
- <i @click="connectAudioDevice('playAudio')" class="el-icon-microphone"></i>
|
|
|
+ <el-col :span="3" class="btn-item">
|
|
|
+ <img @click="connectAudioDevice('playAudio')" src="../../images/mic.png"/>
|
|
|
</el-col>
|
|
|
<el-col :span="3" class="btn-item">
|
|
|
<img @click="tapModeControl" src="../../images/pointer.png"/>
|
|
@@ -174,8 +174,8 @@
|
|
|
<el-col :span="3" class="btn-item">
|
|
|
<img @click="pressPtt" src="../../images/robot.png"/>
|
|
|
</el-col>
|
|
|
- <el-col :span="3">
|
|
|
- <i @click="gotoGrid" class="el-icon-s-grid"></i>
|
|
|
+ <el-col :span="3" class="btn-item">
|
|
|
+ <img @click="gotoGrid" src="../../images/grid.png"/>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</div>
|
|
@@ -1562,23 +1562,25 @@ export default {
|
|
|
.bmBench {
|
|
|
width: 100%;
|
|
|
/* height: 300px; */
|
|
|
- padding: 5px 10px;
|
|
|
box-sizing: border-box;
|
|
|
}
|
|
|
|
|
|
.bmBenchBox {
|
|
|
font-size: 0;
|
|
|
- margin-top: 5px;
|
|
|
+ /* margin-top: 5px; */
|
|
|
position: relative;
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
+ background-color: #000;
|
|
|
}
|
|
|
|
|
|
.bmBenchImg {
|
|
|
/* width: 100%;
|
|
|
height: 285px; */
|
|
|
/* width: 100%; */
|
|
|
- height: 100%;
|
|
|
+ background-color: #000;
|
|
|
+ padding: 80px;
|
|
|
+ /* height: 100%; */
|
|
|
border-radius: 6px;
|
|
|
}
|
|
|
|