old mode 100644
new mode 100755
|  |  |  | 
|---|
|  |  |  | <el-descriptions-item label="设备归属" >{{channel.owner}}</el-descriptions-item> | 
|---|
|  |  |  | <el-descriptions-item label="行政区域" >{{channel.civilCode}}</el-descriptions-item> | 
|---|
|  |  |  | <el-descriptions-item label="安装地址" >{{channel.address}}</el-descriptions-item> | 
|---|
|  |  |  | <el-descriptions-item label="云台类型" >{{channel.ptztypeText}}</el-descriptions-item> | 
|---|
|  |  |  | <el-descriptions-item label="云台类型" >{{channel.ptzTypeText}}</el-descriptions-item> | 
|---|
|  |  |  | <el-descriptions-item label="经纬度" >{{channel.longitude}},{{channel.latitude}}</el-descriptions-item> | 
|---|
|  |  |  | <el-descriptions-item label="状态"> | 
|---|
|  |  |  | <el-tag size="small" v-if="channel.status === 1">在线</el-tag> | 
|---|
|  |  |  | 
|---|
|  |  |  | let that = this; | 
|---|
|  |  |  | this.$axios({ | 
|---|
|  |  |  | method: 'get', | 
|---|
|  |  |  | url: './api/play/start/' + deviceId + '/' + channelId | 
|---|
|  |  |  | url: '/api/play/start/' + deviceId + '/' + channelId | 
|---|
|  |  |  | }).then(function (res) { | 
|---|
|  |  |  | that.isLoging = false; | 
|---|
|  |  |  | if (res.data.code === 0) { | 
|---|