Newer
Older
KaiFengPC / src / views / floodSys / scada / areaInfo / index.vue
@zhangdeliang zhangdeliang on 23 May 4 KB 初始化项目
<template>
  <div class="water-analysis-page">
    <div class="top">
      <el-form ref="ruleForm" inline :model="tableData" v-show="showSearch">
        <el-form-item v-for="i in queryClouns" :label="i.label" :prop="i.prop">
          <el-select
            style="width: 100%"
            clearable
            v-model="tableData.stationCode"
            v-if="i.prop == 'stationName'"
            :placeholder="i.placeholder"
            @change="stationNameChangea"
          >
            <el-option v-for="dict in typeList.stationName_type" :key="dict.id" :label="dict.stationName" :value="dict.stationCode" />
          </el-select>
          <el-select
            style="width: 100%"
            clearable
            v-model="tableData.parentId"
            v-else-if="i.prop == 'parentId'"
            :placeholder="i.placeholder"
          >
            <el-option v-for="dict in typeList.plc_station_type" :key="dict.id" :label="dict.areaName" :value="dict.id" />
          </el-select>
          <el-input v-else style="width: 240px" clearable v-model="tableData[i.prop]" :placeholder="i.placeholder"></el-input>
        </el-form-item>
        <el-form-item>
          <el-button type="primary" icon="Search" @click="searchForm"> 查询</el-button>
          <el-button icon="Refresh" @click="resectClcik"> 重置</el-button>
        </el-form-item>
      </el-form>
      <el-row :gutter="10" class="mb8">
        <el-col :span="1.5">
          <el-button type="primary" plain icon="Plus" @click="onCheck(4)">新增</el-button>
        </el-col>
        <right-toolbar v-model:showSearch="showSearch" @queryTable="searchForm"></right-toolbar>
      </el-row>
    </div>
    <todoDon ref="todoDonRef" :typeListlist="typeList"></todoDon>
    <el-dialog v-model="visible" title="PLC区域信息新增" :modal-append-to-body="false" :close-on-click-modal="false" width="51%">
      <tableDalgo :key="isFlag" ref="tableDalgoRef" :typeList="typeList" @onModalClose="onModalClose"></tableDalgo>
      <template #footer>
        <div class="dialog-footer">
          <el-button @click="open2" type="primary">保存</el-button>
          <el-button @click="visible = false">关闭</el-button>
        </div>
      </template>
    </el-dialog>
  </div>
</template>
<script setup>
import tableDalgo from './tableDalgo.vue';
import todoDon from './todoDon.vue';
import { stationInfolist, getInfolist } from '@/api/scada/areaInfo';
const { proxy } = getCurrentInstance();
const todoDonRef = ref(null);
const ruleForm = ref(null);
let typeList = ref({});
const tableDalgoRef = ref();
const showSearch = ref(true);
let visible = ref(false);
let isFlag = ref(1);
const queryClouns = [
  { label: '区域名称:', prop: 'areaName', placeholder: '请输入区域名称' },
  { label: '站点名称:', prop: 'stationName', placeholder: '请选择站点名称' },
  { label: '上级区域:', prop: 'parentId', placeholder: '请选择上级区域' },
];
//动态组件
let dataForm = reactive({
  tableData: {
    pageNum: 1,
    pageSize: 10,
    stationCode: null,
    parentId: null,
    areaName: null,
  },
  tableDateTwo: '',
  tableLoading: true,
});
let { tableData } = toRefs(dataForm);
//获取列表数据
//搜索
const searchForm = () => {
  todoDonRef.value.search(tableData.value);
};
//重置
const resectClcik = () => {
  tableData.value.stationCode = '';
  ruleForm.value.resetFields();
  todoDonRef.value.search(tableData.value);
};
// 新增
const onCheck = ty => {
  visible.value = true;
  typeList.value.type = ty;
  nextTick(() => {
    tableDalgoRef.value.resetFiled();
  });
};
//保存
function open2() {
  tableDalgoRef.value.submit();
}
function onModalClose() {
  visible.value = false;
  todoDonRef.value.search(tableData.value);
}
const stationInfolistM = async () => {
  let { data } = await stationInfolist();
  typeList.value.stationName_type = data;
};
const getInfolistM = async p => {
  let { data } = await getInfolist(p);
  typeList.value.plc_station_type = data;
};
function stationNameChangea(v) {
  tableData.value.parentId = '';
  getInfolistM({ stationCode: v });
}
onMounted(() => {
  stationInfolistM();
  getInfolistM();
  searchForm();
});
</script>
<style lang="scss" scoped>
.water-analysis-page {
  padding: 20px;
  overflow-y: hidden;
}
</style>