|
@@ -1,6 +1,7 @@
|
|
<template>
|
|
<template>
|
|
<a-modal
|
|
<a-modal
|
|
class="StoreAssociatedEquipmentModal-wrap"
|
|
class="StoreAssociatedEquipmentModal-wrap"
|
|
|
|
+ centered
|
|
title="关联摄像设备"
|
|
title="关联摄像设备"
|
|
:width="1000"
|
|
:width="1000"
|
|
:footer="null"
|
|
:footer="null"
|
|
@@ -79,6 +80,7 @@
|
|
<a-modal
|
|
<a-modal
|
|
class="passagewayModal"
|
|
class="passagewayModal"
|
|
title="编辑"
|
|
title="编辑"
|
|
|
|
+ centered
|
|
:visible="visible"
|
|
:visible="visible"
|
|
:footer="null"
|
|
:footer="null"
|
|
:closable="true"
|
|
:closable="true"
|
|
@@ -189,6 +191,7 @@ export default {
|
|
const _this = this
|
|
const _this = this
|
|
_this.$confirm({
|
|
_this.$confirm({
|
|
title: '提示',
|
|
title: '提示',
|
|
|
|
+ centered: true,
|
|
content: '确定解绑该设备吗?',
|
|
content: '确定解绑该设备吗?',
|
|
onOk () {
|
|
onOk () {
|
|
unbindVsDevice({ id: item.id }).then(res => {
|
|
unbindVsDevice({ id: item.id }).then(res => {
|
|
@@ -205,6 +208,7 @@ export default {
|
|
const _this = this
|
|
const _this = this
|
|
_this.$confirm({
|
|
_this.$confirm({
|
|
title: '提示',
|
|
title: '提示',
|
|
|
|
+ centered: true,
|
|
content: '确定要绑定该设备吗?',
|
|
content: '确定要绑定该设备吗?',
|
|
onOk () {
|
|
onOk () {
|
|
bindVsDevice({ storeCode: _this.storeCode, vsDeviceId: item.id }).then(res => {
|
|
bindVsDevice({ storeCode: _this.storeCode, vsDeviceId: item.id }).then(res => {
|