|
|
@ -956,7 +956,10 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
selectItem2(item) {
|
|
|
|
selectItem2(item) {
|
|
|
|
console.log(item.value);
|
|
|
|
console.log(item.value);
|
|
|
|
|
|
|
|
console.log(item.name);
|
|
|
|
|
|
|
|
console.log(this.channelForm.rtosd);
|
|
|
|
this.channelForm.rtosd += item.name + ":" + item.value + " ";
|
|
|
|
this.channelForm.rtosd += item.name + ":" + item.value + " ";
|
|
|
|
|
|
|
|
console.log(this.channelForm.rtosd);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
selectItem3(item) {
|
|
|
|
selectItem3(item) {
|
|
|
|
console.log(item.value);
|
|
|
|
console.log(item.value);
|
|
|
@ -1081,19 +1084,23 @@ export default {
|
|
|
|
this.channelForm.aival = resultContent.recognization;
|
|
|
|
this.channelForm.aival = resultContent.recognization;
|
|
|
|
this.channelForm.roteval = resultContent.orientation;
|
|
|
|
this.channelForm.roteval = resultContent.orientation;
|
|
|
|
this.channelForm.rtosd =
|
|
|
|
this.channelForm.rtosd =
|
|
|
|
resultContent.osd.rightTop != "null"
|
|
|
|
resultContent.osd.rightTop !== null &&
|
|
|
|
|
|
|
|
resultContent.osd.rightTop !== undefined
|
|
|
|
? resultContent.osd.rightTop
|
|
|
|
? resultContent.osd.rightTop
|
|
|
|
: "";
|
|
|
|
: "";
|
|
|
|
this.channelForm.ltosd =
|
|
|
|
this.channelForm.ltosd =
|
|
|
|
resultContent.osd.leftTop != "null"
|
|
|
|
resultContent.osd.leftTop !== null &&
|
|
|
|
|
|
|
|
resultContent.osd.leftTop !== undefined
|
|
|
|
? resultContent.osd.leftTop
|
|
|
|
? resultContent.osd.leftTop
|
|
|
|
: "";
|
|
|
|
: "";
|
|
|
|
this.channelForm.lbosd =
|
|
|
|
this.channelForm.lbosd =
|
|
|
|
resultContent.osd.leftBottom != "null"
|
|
|
|
resultContent.osd.leftBottom !== null &&
|
|
|
|
|
|
|
|
resultContent.osd.leftBottom !== undefined
|
|
|
|
? resultContent.osd.leftBottom
|
|
|
|
? resultContent.osd.leftBottom
|
|
|
|
: "";
|
|
|
|
: "";
|
|
|
|
this.channelForm.rbosd =
|
|
|
|
this.channelForm.rbosd =
|
|
|
|
resultContent.osd.rightBottom != "null"
|
|
|
|
resultContent.osd.rightBottom !== null &&
|
|
|
|
|
|
|
|
resultContent.osd.rightBottom !== undefined
|
|
|
|
? resultContent.osd.rightBottom
|
|
|
|
? resultContent.osd.rightBottom
|
|
|
|
: "";
|
|
|
|
: "";
|
|
|
|
this.channelForm.videoCX = resultContent.videoCX;
|
|
|
|
this.channelForm.videoCX = resultContent.videoCX;
|
|
|
|