Browse Source

预案

wangqin
zhoule 8 months ago
parent
commit
4d71b10416
  1. 9
      ruoyi-ui/src/views/JiHeExpressway/pages/control/event/plan/addAndEditDialog/index.vue
  2. 22
      ruoyi-ui/src/views/JiHeExpressway/pages/control/event/plan/formTable/index.vue

9
ruoyi-ui/src/views/JiHeExpressway/pages/control/event/plan/addAndEditDialog/index.vue

@ -35,7 +35,7 @@
<div class="text"><i style="color: red;">*</i>执行操作:</div>
</el-col>
<el-col :span="22">
<FormTable ref="secondFormTable" :tableData="secondFormData"></FormTable>
<FormTable ref="secondFormTable" :tableData="secondFormData" :type="1"></FormTable>
</el-col>
</el-row>
</div>
@ -45,7 +45,7 @@
<div class="text"><i style="color: red;">*</i>恢复操作:</div>
</el-col>
<el-col :span="22">
<FormTable ref="thirdFormTable" :tableData="thirdFormData"></FormTable>
<FormTable ref="thirdFormTable" :tableData="thirdFormData" :type="2"></FormTable>
</el-col>
</el-row>
</div>
@ -89,7 +89,8 @@ export default {
},
provide() {
return {
loadData: throttle(this.loadData, 1000)
// loadData: throttle(this.loadData, 100)
loadData: this.loadData
}
},
props: {
@ -238,7 +239,7 @@ export default {
this.thirdFormData.push(action);
}
})
console.log('secondFormData', this.secondFormData)
// console.log('secondFormData', this.secondFormData)
}).catch((err) => {
console.log(err)
Message.error("查询事件预案列表失败", err);

22
ruoyi-ui/src/views/JiHeExpressway/pages/control/event/plan/formTable/index.vue

@ -41,7 +41,7 @@
:value="item.id">
</el-option>
</el-select>
<el-input @click.native="clickQbb(scope.$index)" v-if="scope.row.deviceType == 2"
<el-input @click.native="clickQbb(scope.$index)" v-if="type == 1 && scope.row.deviceType == 2"
placeholder="请选择" v-model="scope.row.qbb" readonly>
<i slot="suffix" class="el-input__icon el-icon-search"></i>
</el-input>
@ -115,6 +115,7 @@ export default {
props: {
visible: Boolean,
eventType: Number,
type: Number,
tableData: {
type: Array,
default: () => [{
@ -219,10 +220,21 @@ export default {
index: 1
}
},
async created() {
let loadData = await this.loadData(1);
// console.log('aa',loadData)
this.sbOptions = loadData;
watch: {
async tableData(newValue) {
console.log('newValue', newValue)
if (newValue) {
const item = this.tableData.find(it => it.searchRule == 1);
console.log('item', item);
if (item && item.deviceType) {
let loadData = await this.loadData(item.deviceType);
console.log('aa', loadData)
this.sbOptions = loadData;
}
}
}
},
mounted() {
},
methods: {
initData() {

Loading…
Cancel
Save