|
|
@ -148,8 +148,21 @@ |
|
|
|
<i class="el-icon-check"></i> |
|
|
|
</ButtonGradient> |
|
|
|
</div> |
|
|
|
|
|
|
|
</div> |
|
|
|
</el-col> |
|
|
|
<el-col :span="5" > |
|
|
|
<span >音量(取1-9)</span> |
|
|
|
</el-col> |
|
|
|
<el-col :span="6" > |
|
|
|
<el-input-number placeholder="" v-model="tableInfo.executeConfig.outVol" :min="1":max="9"></el-input-number> |
|
|
|
</el-col> |
|
|
|
<el-col :span="6" style="margin-left: 5px;" > |
|
|
|
<span >循环次数(1-16)</span> |
|
|
|
</el-col> |
|
|
|
<el-col :span="6" > |
|
|
|
<el-input-number placeholder="" v-model="tableInfo.executeConfig.repeatTimes" :min="1":max="16"></el-input-number> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row v-if="tableInfo.deviceType !== 5"> |
|
|
|
<el-col :span="3"> |
|
|
@ -187,7 +200,7 @@ |
|
|
|
</el-select> |
|
|
|
</el-col> |
|
|
|
<el-col v-if="tableInfo.deviceType == 12 && tableInfo.hf_controlModel == '01'" :span="8" style="margin-left: 5px;"> |
|
|
|
<el-time-picker v-model="tableInfo.hf_time" is-range range-separator="-" placeholder="选择时间" |
|
|
|
<el-time-picker v-model="tableInfo.hf_time" is-range range-separator="-" placeholder="选择时间" |
|
|
|
value-format="HH:mm" format="HH:mm"> |
|
|
|
</el-time-picker> |
|
|
|
</el-col> |
|
|
@ -264,6 +277,12 @@ export default { |
|
|
|
}, |
|
|
|
data() { |
|
|
|
return { |
|
|
|
tableInfo: { |
|
|
|
executeConfig: { |
|
|
|
repeatTimes: 1, // 这里设置默认值为 1 |
|
|
|
outVol: 1 // 这里设置默认值为 1 |
|
|
|
} |
|
|
|
}, |
|
|
|
isShowDialog: false, |
|
|
|
deviceOptions: planDeviceOptions, |
|
|
|
zyOptions: [ |
|
|
@ -381,7 +400,7 @@ export default { |
|
|
|
// } |
|
|
|
// await this.loadData(newValue); |
|
|
|
// this.$emit('check'); |
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
immediate: true, |
|
|
|
} |
|
|
@ -448,12 +467,12 @@ export default { |
|
|
|
delete this.tableInfo[key] |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if(value === 2 || value === 5){ |
|
|
|
this.tableInfo["executeConfig"]= {operationType:2} |
|
|
|
this.tableInfo["recoverConfig"]= {operationType:2} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
this.loadData(value); |
|
|
|
}, |
|
|
|
gzmsOptions_zx_change(e){ |
|
|
@ -534,7 +553,7 @@ export default { |
|
|
|
} |
|
|
|
.contentBoard{ |
|
|
|
flex:1; |
|
|
|
background-color: #19425c; |
|
|
|
background-color: #19425c; |
|
|
|
color:#dfdfdf; |
|
|
|
padding: 9px 0px; |
|
|
|
text-align: center; |
|
|
@ -543,4 +562,4 @@ export default { |
|
|
|
.btn{ |
|
|
|
height:40px; |
|
|
|
} |
|
|
|
</style> |
|
|
|
</style> |
|
|
|