Browse Source

高音号角默认值

develop
王兴琳 3 days ago
parent
commit
1d9bfe2235
  1. 48
      ruoyi-ui/src/views/JiHeExpressway/pages/control/event/commandDispatch/Cards/DeviceControl/components/ScopeTable.vue
  2. 4
      ruoyi-ui/src/views/JiHeExpressway/pages/control/event/commandDispatch/Cards/DeviceControl/data.js

48
ruoyi-ui/src/views/JiHeExpressway/pages/control/event/commandDispatch/Cards/DeviceControl/components/ScopeTable.vue

@ -275,17 +275,11 @@ export default {
index: Number,
tableInfo: {
type: Object,
default: () => ({ ...defaultTableInfo })
default: () => ({ ...defaultTableInfo }),
}
},
data() {
return {
tableInfo: {
executeConfig: {
repeatTimes: 1, // 1
outVol: 1 // 1
}
},
isShowDialog: false,
deviceOptions: planDeviceOptions,
zyOptions: [
@ -371,45 +365,19 @@ export default {
watch: {
'tableInfo.deviceType': {
async handler(newValue,oldValue) {
// console.log(newValue,oldValue)
// // console.log(this.tableInfo, newValue,oldValue)
// // if(this.tableInfo.isUnReset){
// // this.tableInfo.isUnReset = false
// // return;
// // }
// if(oldValue !== undefined){ //
// this.tableInfo.devList = []
// this.tableInfo.searchRule = 1;
// this.sbOptions = []
// delete this.tableInfo.zx_operationType
// delete this.tableInfo.hf_operationType
// if(this.tableInfo.executeConfig && this.tableInfo.executeConfig.contentList){
// this.tableInfo.executeConfig.contentList = []
// }
// if(this.tableInfo.recoverConfig && this.tableInfo.recoverConfig.contentList){
// this.tableInfo.recoverConfig.contentList = []
// }
// if(this.tableInfo.deviceType === 2){
// this.tableInfo.zx_operationType = 2;
// this.tableInfo.hf_operationType = 2;
// this.tableInfo.executeConfig = {operationType:2}
// this.tableInfo.recoverConfig = {operationType:2}
// }
// if(this.tableInfo.deviceType === 5){
// this.tableInfo.zx_operationType = 2;
// this.tableInfo.executeConfig = {operationType:2}
// }
// // this.tableInfo = _.cloneDeep(this.tableInfo)
// }
// await this.loadData(newValue);
// this.$emit('check');
},
immediate: true,
}
},
async mounted() {
this.onDeviceTypeChange(this.tableInfo.deviceType,false)
// repeatTimes 1
if (!this.tableInfo.executeConfig || this.tableInfo.executeConfig.repeatTimes === undefined) {
this.$set(this.tableInfo.executeConfig, 'repeatTimes', 1)
} // outVol 1
if (!this.tableInfo.executeConfig || this.tableInfo.executeConfig.outVol === undefined) {
this.$set(this.tableInfo.executeConfig, 'outVol', 1)
}
},
methods: {
initData() { },

4
ruoyi-ui/src/views/JiHeExpressway/pages/control/event/commandDispatch/Cards/DeviceControl/data.js

@ -8,4 +8,8 @@ export const defaultTableInfo = {
zx_operationType: 2,
hf_operationType: 2,
sbOptions: [],
executeConfig:{
repeatTimes: 1, // 这里设置默认值为 1
outVol: 1 // 这里设置默认值为 1
},
};

Loading…
Cancel
Save