增加入参判断是否调用接口

This commit is contained in:
aixianling
2024-07-16 11:54:49 +08:00
parent 42aca4d540
commit 916fae5c36

View File

@@ -94,14 +94,14 @@ export default {
this.getSourceData(item, index) this.getSourceData(item, index)
} }
if (item.type === 'monitor' && item.monitorType === 'cmcc') { if (item.type === 'monitor' && item.monitorType === 'cmcc') {
this.instance.post(`${this.urlPrefix}/appzyvideoequipment/getWebSdkUrl?deviceId=${item.moniterId}`).then(res => { item.moniterId && this.instance.post(`${this.urlPrefix}/appzyvideoequipment/getWebSdkUrl?deviceId=${item.moniterId}`).then(res => {
if (res.code == 0) { if (res.code == 0) {
this.$set(this.componentList[index], 'src', JSON.parse(res.data).url) this.$set(this.componentList[index], 'src', JSON.parse(res.data).url)
} }
}) })
} }
if (item.type === 'monitor' && item.monitorType === 'slw') { if (item.type === 'monitor' && item.monitorType === 'slw') {
this.instance.post(`${this.urlPrefix}/appzyvideoequipment/getWebSdkUrl?deviceId=${item.moniterId}`).then(res => { item.moniterId && this.instance.post(`${this.urlPrefix}/appzyvideoequipment/getWebSdkUrl?deviceId=${item.moniterId}`).then(res => {
if (res.code == 0) { if (res.code == 0) {
this.$set(this.componentList[index], 'src', res.data) this.$set(this.componentList[index], 'src', res.data)
} }
@@ -192,7 +192,7 @@ export default {
const item = tableData[k.substring(1) || 0] || {} const item = tableData[k.substring(1) || 0] || {}
item[prop] = v item[prop] = v
tableData[k.substring(1) || 0] = item tableData[k.substring(1) || 0] = item
}else if (k != columnProp) { } else if (k != columnProp) {
const index = columns.findIndex(e => k == e) const index = columns.findIndex(e => k == e)
if (index > -1) { if (index > -1) {
const item = tableData[index] || {} const item = tableData[index] || {}