|
|
@@ -139,7 +139,8 @@ export default {
|
|
|
condition: { deviceType: this.deviceType },
|
|
|
list: getThirdPartyDevices,
|
|
|
cols: [
|
|
|
- { prop: 'name', label: '名称', align: 'center' }
|
|
|
+ { prop: 'name', label: '名称' },
|
|
|
+ { prop: 'remark', label: '备注' }
|
|
|
]
|
|
|
}
|
|
|
}
|
|
|
@@ -180,7 +181,7 @@ export default {
|
|
|
},
|
|
|
onCameraChoosen ({ value, done }) {
|
|
|
this.$confirm(
|
|
|
- `绑定摄像头 ${value.name} ?`,
|
|
|
+ `${this.title} ${value.name} ?`,
|
|
|
{ type: 'warning' }
|
|
|
).then(() => {
|
|
|
bind(this.device.id, this.deviceType, value.id).then(() => {
|