修复页面开启音频失败
parent
76ec3d1b60
commit
ad4e61d7e7
|
@ -100,9 +100,9 @@
|
||||||
<span v-show="!scope.row.edit">{{ scope.row.location }}</span>
|
<span v-show="!scope.row.edit">{{ scope.row.location }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="PTZType" label="云台类型" min-width="100">
|
<el-table-column prop="ptztype" label="云台类型" min-width="100">
|
||||||
<template v-slot:default="scope">
|
<template v-slot:default="scope">
|
||||||
<el-select v-show="scope.row.edit" v-model="scope.row.PTZType"
|
<el-select v-show="scope.row.edit" v-model="scope.row.ptztype"
|
||||||
placeholder="云台类型" filterable>
|
placeholder="云台类型" filterable>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="(value, key) in ptzTypes"
|
v-for="(value, key) in ptzTypes"
|
||||||
|
@ -111,7 +111,7 @@
|
||||||
:value="key"
|
:value="key"
|
||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
<div v-show="!scope.row.edit">{{ scope.row.PTZTypeText }}</div>
|
<div v-show="!scope.row.edit">{{ scope.row.ptztypeText }}</div>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="开启音频" min-width="100">
|
<el-table-column label="开启音频" min-width="100">
|
||||||
|
@ -312,7 +312,7 @@ export default {
|
||||||
that.total = res.data.data.total;
|
that.total = res.data.data.total;
|
||||||
that.deviceChannelList = res.data.data.list;
|
that.deviceChannelList = res.data.data.list;
|
||||||
that.deviceChannelList.forEach(e => {
|
that.deviceChannelList.forEach(e => {
|
||||||
e.PTZType = e.PTZType + "";
|
e.ptztype = e.ptztype + "";
|
||||||
that.$set(e, "edit", false);
|
that.$set(e, "edit", false);
|
||||||
that.$set(e, "location", "");
|
that.$set(e, "location", "");
|
||||||
if (e.longitude && e.latitude) {
|
if (e.longitude && e.latitude) {
|
||||||
|
@ -460,7 +460,7 @@ export default {
|
||||||
this.total = res.data.data.total;
|
this.total = res.data.data.total;
|
||||||
this.deviceChannelList = res.data.data.list;
|
this.deviceChannelList = res.data.data.list;
|
||||||
this.deviceChannelList.forEach(e => {
|
this.deviceChannelList.forEach(e => {
|
||||||
e.PTZType = e.PTZType + "";
|
e.ptztype = e.ptztype + "";
|
||||||
this.$set(e, "edit", false);
|
this.$set(e, "edit", false);
|
||||||
this.$set(e, "location", "");
|
this.$set(e, "location", "");
|
||||||
if (e.longitude && e.latitude) {
|
if (e.longitude && e.latitude) {
|
||||||
|
|
Loading…
Reference in New Issue