|
@@ -1,6 +1,17 @@
|
|
|
<template>
|
|
|
- <el-dialog v-model="isShow" width="1100px" :before-close="handleClose">
|
|
|
- <el-form ref="ruleFormRef" :model="form" :rules="rules" label-position="top" label-width="200px">
|
|
|
+ <el-dialog
|
|
|
+ v-model="isShow"
|
|
|
+ width="1100px"
|
|
|
+ :before-close="handleClose"
|
|
|
+ destroy-on-close
|
|
|
+ >
|
|
|
+ <el-form
|
|
|
+ ref="ruleFormRef"
|
|
|
+ :model="form"
|
|
|
+ :rules="rules"
|
|
|
+ label-position="top"
|
|
|
+ label-width="200px"
|
|
|
+ >
|
|
|
<el-row type="flex" justify="space-between" align="middle" :gutter="10">
|
|
|
<el-col :span="15">
|
|
|
<el-form-item prop="name">
|
|
@@ -8,89 +19,174 @@
|
|
|
<el-input v-model="form.name" />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="9" style="
|
|
|
+ <el-col
|
|
|
+ :span="9"
|
|
|
+ style="
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
align-items: center;
|
|
|
- ">
|
|
|
+ "
|
|
|
+ >
|
|
|
<el-form-item prop="category">
|
|
|
<el-tag>报警类别</el-tag>
|
|
|
- <el-select v-model="form.category" class="select-mini">
|
|
|
- <el-option key="1" label="风机" value="1" />
|
|
|
- <el-option key="2" label="电气" value="2" />
|
|
|
+ <el-select
|
|
|
+ v-model="form.category"
|
|
|
+ class="select-mini"
|
|
|
+ @change="categorychanged"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ key="1"
|
|
|
+ label="风机报警"
|
|
|
+ value="windturbine"
|
|
|
+ ></el-option>
|
|
|
+ <el-option
|
|
|
+ key="2"
|
|
|
+ label="升压站报警"
|
|
|
+ value="booststation"
|
|
|
+ ></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item prop="rank">
|
|
|
<el-tag>报警级别</el-tag>
|
|
|
<el-select v-model="form.rank" class="select-mini">
|
|
|
- <el-option key="1" label="低" value="1" />
|
|
|
- <el-option key="2" label="中低" value="2" />
|
|
|
- <el-option key="3" label="中" value="3" />
|
|
|
- <el-option key="4" label="中高" value="4" />
|
|
|
- <el-option key="5" label="高" value="5" />
|
|
|
+ <el-option
|
|
|
+ v-for="item in rankList"
|
|
|
+ :key="item.id"
|
|
|
+ :value="item.id"
|
|
|
+ :label="item.name"
|
|
|
+ ></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item prop="enabled">
|
|
|
+ <el-form-item prop="enable">
|
|
|
<el-tag>是否启用</el-tag>
|
|
|
- <el-switch v-model="form.enabled" :active-value="1" :inactive-value="0" active-color="#13ce66" />
|
|
|
+ <el-switch
|
|
|
+ v-model="form.enable"
|
|
|
+ :active-value="true"
|
|
|
+ :inactive-value="false"
|
|
|
+ active-color="#13ce66"
|
|
|
+ />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row :gutter="10">
|
|
|
<el-col :span="6">
|
|
|
<el-form-item prop="station">
|
|
|
- <el-tag>风场</el-tag>
|
|
|
- <el-select v-model="form.station" style="width: 100%" @change="stationChange">
|
|
|
- <el-option v-for="item in stationList" :key="item.id" :value="item.id" :label="item.name" />
|
|
|
+ <el-tag>{{
|
|
|
+ form.category == "windturbine" ? "风场" : "升压站"
|
|
|
+ }}</el-tag>
|
|
|
+ <el-select
|
|
|
+ v-model="form.stationId"
|
|
|
+ style="width: 100%"
|
|
|
+ @change="stationChange"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in stationList"
|
|
|
+ :key="item.id"
|
|
|
+ :value="item.id"
|
|
|
+ :label="item.name"
|
|
|
+ />
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item prop="modelId">
|
|
|
+ <el-form-item prop="modelId" v-if="form.category == 'windturbine'">
|
|
|
<el-tag>风机型号</el-tag>
|
|
|
- <el-select v-model="form.modelId" style="width: 100%" @change="modelIdChange">
|
|
|
- <el-option v-for="item in state.modelList" :key="item" :value="item" :label="item" />
|
|
|
+ <el-select
|
|
|
+ v-model="form.modelId"
|
|
|
+ style="width: 100%"
|
|
|
+ @change="modelIdChange"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in state.modelList"
|
|
|
+ :key="item"
|
|
|
+ :value="item.id"
|
|
|
+ :label="item.aname"
|
|
|
+ ></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item prop="relatedParts">
|
|
|
+ <el-form-item
|
|
|
+ prop="relatedParts"
|
|
|
+ v-if="form.category == 'windturbine'"
|
|
|
+ >
|
|
|
<el-tag>所属部件</el-tag>
|
|
|
<el-select v-model="form.relatedParts" style="width: 100%">
|
|
|
- <el-option v-for="i in state.relatePartList" :key="i.partCode" :value="i.partCode" :label="i.name" />
|
|
|
+ <el-option
|
|
|
+ v-for="item in state.relatedPartsList"
|
|
|
+ :key="item.nemCode"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.nemCode"
|
|
|
+ />
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item prop="fault">
|
|
|
<el-tag>预警类型</el-tag>
|
|
|
- <el-select v-model="form.project" style="width: 100%">
|
|
|
- <el-option v-for="i in faultList" :key="i.value" :value="i.value" :label="i.name" />
|
|
|
+ <el-select v-model="form.range" style="width: 100%">
|
|
|
+ <el-option
|
|
|
+ v-for="i in faultList"
|
|
|
+ :key="i.nemCode"
|
|
|
+ :value="i.nemCode"
|
|
|
+ :label="i.name"
|
|
|
+ />
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="9">
|
|
|
- <el-form-item prop="expressionShow">
|
|
|
+ <el-form-item prop="expression">
|
|
|
<el-tag>表达式</el-tag>
|
|
|
- <el-input type="textarea" rows="14" v-model="form.expressionShow" :value="form.expressionShow"
|
|
|
- id="expressionInput" />
|
|
|
+ <el-input
|
|
|
+ type="textarea"
|
|
|
+ rows="14"
|
|
|
+ v-model="form.expression"
|
|
|
+ id="expressionInput"
|
|
|
+ />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="9">
|
|
|
<el-tabs type="border-card">
|
|
|
<el-tab-pane label="AI测点">
|
|
|
<el-input v-model="state.AIPointSearch"> </el-input>
|
|
|
- <el-table size="mini" fit :show-header="false" :highlight-current-row="true" :stripe="false"
|
|
|
- :border="false" height="240" :data="filterAIList" @row-dblclick="rowDbclick">
|
|
|
+ <el-table
|
|
|
+ size="mini"
|
|
|
+ fit
|
|
|
+ :show-header="false"
|
|
|
+ :highlight-current-row="true"
|
|
|
+ :stripe="false"
|
|
|
+ :border="false"
|
|
|
+ height="240"
|
|
|
+ :data="filterAIList"
|
|
|
+ @row-dblclick="rowDbclick"
|
|
|
+ >
|
|
|
<el-table-column prop="uniformCode" />
|
|
|
<el-table-column prop="name" />
|
|
|
</el-table>
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="DI测点">
|
|
|
<el-input v-model="state.DIPointSearch"> </el-input>
|
|
|
- <el-table size="mini" fit :show-header="false" :highlight-current-row="true" :stripe="false"
|
|
|
- :border="false" height="240" :data="filterDIList" @row-dblclick="rowDbclick">
|
|
|
+ <el-table
|
|
|
+ size="mini"
|
|
|
+ fit
|
|
|
+ :show-header="false"
|
|
|
+ :highlight-current-row="true"
|
|
|
+ :stripe="false"
|
|
|
+ :border="false"
|
|
|
+ height="240"
|
|
|
+ :data="filterDIList"
|
|
|
+ @row-dblclick="rowDbclick"
|
|
|
+ >
|
|
|
<el-table-column prop="uniformCode" />
|
|
|
<el-table-column prop="name" />
|
|
|
</el-table>
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="函数">
|
|
|
- <el-table size="mini" fit :show-header="false" :highlight-current-row="true" :stripe="false"
|
|
|
- :border="false" :height="270" :data="func" @row-dblclick="tabFuncRowClickHandle">
|
|
|
+ <el-table
|
|
|
+ size="mini"
|
|
|
+ fit
|
|
|
+ :show-header="false"
|
|
|
+ :highlight-current-row="true"
|
|
|
+ :stripe="false"
|
|
|
+ :border="false"
|
|
|
+ :height="270"
|
|
|
+ :data="func"
|
|
|
+ @row-dblclick="tabFuncRowClickHandle"
|
|
|
+ >
|
|
|
<el-table-column min-width="60%">
|
|
|
<template #default="scope">
|
|
|
<el-popover trigger="hover" placement="bottom">
|
|
@@ -98,7 +194,7 @@
|
|
|
<p>参数:{{ scope.row.param }}</p>
|
|
|
<template #reference>
|
|
|
<span size="medium" transition="fade-in-linear">{{
|
|
|
- scope.row.lab
|
|
|
+ scope.row.lab
|
|
|
}}</span>
|
|
|
</template>
|
|
|
</el-popover>
|
|
@@ -111,7 +207,7 @@
|
|
|
<p>参数:{{ scope.row.param }}</p>
|
|
|
<template #reference>
|
|
|
<span size="medium" transition="fade-in-linear">{{
|
|
|
- scope.row.name
|
|
|
+ scope.row.name
|
|
|
}}</span>
|
|
|
</template>
|
|
|
</el-popover>
|
|
@@ -121,8 +217,14 @@
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="运算符">
|
|
|
<el-button-group>
|
|
|
- <el-button v-for="item in operator" :key="item" plain type="primary" @click="elInputSplit(item)"
|
|
|
- style="width: 60px; margin: 7px 12px; height: 40px">
|
|
|
+ <el-button
|
|
|
+ v-for="item in operator"
|
|
|
+ :key="item"
|
|
|
+ plain
|
|
|
+ type="primary"
|
|
|
+ @click="elInputSplit(item)"
|
|
|
+ style="width: 60px; margin: 7px 12px; height: 40px"
|
|
|
+ >
|
|
|
{{ item }}
|
|
|
</el-button>
|
|
|
</el-button-group>
|
|
@@ -132,9 +234,14 @@
|
|
|
</el-row>
|
|
|
<el-row :gutter="24">
|
|
|
<el-col :span="24">
|
|
|
- <el-form-item prop="descriptionShow">
|
|
|
+ <el-form-item prop="description">
|
|
|
<el-tag>规则描述</el-tag>
|
|
|
- <el-input type="textarea" rows="4" v-model="form.descriptionShow" />
|
|
|
+ <el-input
|
|
|
+ type="textarea"
|
|
|
+ rows="4"
|
|
|
+ v-model="form.description"
|
|
|
+ id="descriptionInput"
|
|
|
+ />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -142,7 +249,9 @@
|
|
|
<template #footer>
|
|
|
<span class="dialog-footer">
|
|
|
<el-button @click="closeDialog">取 消</el-button>
|
|
|
- <el-button type="primary" @click="submitForm(ruleFormRef)">确 定</el-button>
|
|
|
+ <el-button type="primary" @click="submitForm(ruleFormRef)"
|
|
|
+ >确 定</el-button
|
|
|
+ >
|
|
|
</span>
|
|
|
</template>
|
|
|
</el-dialog>
|
|
@@ -151,48 +260,85 @@
|
|
|
import { ref, onMounted, reactive, computed, watch, nextTick } from "vue";
|
|
|
import { ElMessageBox, ElMessage } from "element-plus";
|
|
|
import {
|
|
|
- fetchAIPointList,
|
|
|
- fetchDIPointList,
|
|
|
- fetchRelatePart,
|
|
|
custombj_postSave,
|
|
|
fetch_electrical_point_ai,
|
|
|
fetch_electrical_point_di,
|
|
|
getStationinfo,
|
|
|
+ fetchPointList,
|
|
|
+ fetchPointListByBootst,
|
|
|
} from "/@/api/api.js";
|
|
|
import { useStore } from "vuex";
|
|
|
const store = useStore();
|
|
|
-const stationList = computed(() => store.state.stationList);
|
|
|
-onMounted(() => {
|
|
|
- getfetchRelatePart();
|
|
|
+const emits = defineEmits(["close"]);
|
|
|
+const props = defineProps({
|
|
|
+ //是否显示
|
|
|
+ isVisible: {
|
|
|
+ type: Boolean,
|
|
|
+ defaule: false,
|
|
|
+ },
|
|
|
+ //表单
|
|
|
+ form: {
|
|
|
+ type: Object,
|
|
|
+ },
|
|
|
+ //型号接口数据
|
|
|
+ modelListAll: {
|
|
|
+ type: Object,
|
|
|
+ },
|
|
|
+ //所属部件及预警类型
|
|
|
+ fetchListAll: {
|
|
|
+ type: Array,
|
|
|
+ },
|
|
|
+ //报警级别
|
|
|
+ rankList: {
|
|
|
+ type: Array,
|
|
|
+ },
|
|
|
});
|
|
|
-watch(() => props.isVisible,
|
|
|
- (val, old) => {
|
|
|
+watch(
|
|
|
+ () => props.isVisible,
|
|
|
+ (val, old) => {
|
|
|
nextTick(() => {
|
|
|
- isShow.value = val
|
|
|
+ isShow.value = val;
|
|
|
});
|
|
|
},
|
|
|
{
|
|
|
deep: true,
|
|
|
}
|
|
|
-)
|
|
|
-watch(() => props.form,
|
|
|
- (val, old) => {
|
|
|
+);
|
|
|
+watch(
|
|
|
+ () => props.form,
|
|
|
+ (val, old) => {
|
|
|
nextTick(() => {
|
|
|
- form.value = val
|
|
|
+ form.value = val;
|
|
|
+ if (val.id && val.id != "") {
|
|
|
+ if (val?.stationId.includes("FDC") || val?.stationId.includes("GDC")) {
|
|
|
+ getfetchPointList();
|
|
|
+ } else {
|
|
|
+ getfetchPointListByBootst();
|
|
|
+ }
|
|
|
+ }
|
|
|
});
|
|
|
},
|
|
|
{
|
|
|
deep: true,
|
|
|
}
|
|
|
-)
|
|
|
+);
|
|
|
watch(
|
|
|
- () => props.form?.id,
|
|
|
+ () => props.form?.stationId,
|
|
|
(val, old) => {
|
|
|
- if (val != "") {
|
|
|
+ if (val && val != "") {
|
|
|
nextTick(async () => {
|
|
|
- getfetchAIPointList();
|
|
|
- getfetchDIPointList();
|
|
|
+ state.modelList = props.modelListAll[val];
|
|
|
+ if (val.includes("FDC")) {
|
|
|
+ state.relatedPartsList = props.fetchListAll?.fjbj;
|
|
|
+ } else if (val.includes("GDC")) {
|
|
|
+ state.relatedPartsList = props.fetchListAll?.gfbj;
|
|
|
+ } else {
|
|
|
+ state.relatedPartsList = [];
|
|
|
+ }
|
|
|
});
|
|
|
+ } else {
|
|
|
+ state.relatedPartsList = [];
|
|
|
+ state.modelList = [];
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -200,45 +346,41 @@ watch(
|
|
|
}
|
|
|
);
|
|
|
|
|
|
-const isShow=ref(false);
|
|
|
+const isShow = ref(false);
|
|
|
|
|
|
const form = ref({
|
|
|
id: "",
|
|
|
- name: "",
|
|
|
- descriptionShow: "",
|
|
|
- expressionShow: "",
|
|
|
- tag: "",
|
|
|
- rank: "",
|
|
|
- enabled: "1", // 1可用-0禁用
|
|
|
+ category: "windturbine", //报警类别
|
|
|
+ description: "", //描述
|
|
|
+ name: "", //规则名称
|
|
|
+ enable: true, //是否启用
|
|
|
+ expression: "", //表达式
|
|
|
+ range: "", //预警类型
|
|
|
+ rank: "", //报警级别
|
|
|
+ relatedParts: "", //所属部件
|
|
|
+ stationId: "", //场站id
|
|
|
+ deviceId: "",
|
|
|
+ electricalId: "",
|
|
|
+ lineId: "",
|
|
|
modelId: "",
|
|
|
- ednaValue: "",
|
|
|
- category: "",
|
|
|
- range: 0,
|
|
|
- station: "",
|
|
|
- windturbine: "",
|
|
|
- line: "",
|
|
|
- project: "",
|
|
|
- electrical: "",
|
|
|
- taskstart: "",
|
|
|
- relatedParts: "",
|
|
|
- userName: "",
|
|
|
-})
|
|
|
-const emits = defineEmits(["close"]);
|
|
|
-const props = defineProps({
|
|
|
- isVisible: {
|
|
|
- type: Boolean,
|
|
|
- defaule: false,
|
|
|
- },
|
|
|
- form: {
|
|
|
- type: Object,
|
|
|
- },
|
|
|
+ projectId: "",
|
|
|
+ tag: "",
|
|
|
+ uniformCode: "",
|
|
|
+});
|
|
|
+// 场站列表/升压站列表
|
|
|
+const stationList = computed(() => {
|
|
|
+ if (form.value.category == "windturbine") {
|
|
|
+ return store.state.stationListAll;
|
|
|
+ } else {
|
|
|
+ return store.state.booststationList;
|
|
|
+ }
|
|
|
});
|
|
|
const toEmits = () => {
|
|
|
emits("close"); // 向父组件传递数据
|
|
|
};
|
|
|
const state = reactive({
|
|
|
- relatePartList: [],
|
|
|
- modelList: [],
|
|
|
+ modelList: [], //型号列表
|
|
|
+ relatedPartsList: [], //部件列表
|
|
|
AIPointList: [],
|
|
|
DIPointList: [],
|
|
|
AIPointSearch: "",
|
|
@@ -459,69 +601,68 @@ const func = [
|
|
|
{ lab: "PI", name: "圆周率", param: "", describe: "", scene: "" },
|
|
|
{ lab: "E", name: "自然对数", param: "", describe: "", scene: "" },
|
|
|
];
|
|
|
-const faultList = [
|
|
|
- {
|
|
|
- value: "sensors",
|
|
|
- name: "传感器异常",
|
|
|
- },
|
|
|
- {
|
|
|
- value: "parts",
|
|
|
- name: "零部件隐患",
|
|
|
- },
|
|
|
- {
|
|
|
- value: "control",
|
|
|
- name: "控制参数优化",
|
|
|
- },
|
|
|
- {
|
|
|
- value: "performance",
|
|
|
- name: "性能下降",
|
|
|
- },
|
|
|
-];
|
|
|
+const faultList = computed(() => props.fetchListAll.yj); //预警类型列表
|
|
|
const ruleFormRef = ref(null);
|
|
|
const rules = reactive({
|
|
|
name: [{ required: true, message: "请输入规则名称", trigger: "blur" }],
|
|
|
category: [{ required: true, message: "请选择报警类别", trigger: "change" }],
|
|
|
rank: [{ required: true, message: "请选择报警级别", trigger: "change" }],
|
|
|
- station: [{ required: true, message: "请选择风场", trigger: "change" }],
|
|
|
- expressionShow: [
|
|
|
- { required: true, message: "表达式不能为空", trigger: "change" },
|
|
|
+ stationId: [{ required: true, message: "请选择风场", trigger: "change" }],
|
|
|
+ expression: [
|
|
|
+ { required: true, message: "表达式不能为空", trigger: ["change"] },
|
|
|
],
|
|
|
});
|
|
|
|
|
|
+//categorychanged
|
|
|
+const categorychanged = async (val) => {
|
|
|
+ form.value.stationId = "";
|
|
|
+ form.modelId = "";
|
|
|
+ form.value.expression = "";
|
|
|
+ form.relatedParts = "";
|
|
|
+ state.AIPointList = [];
|
|
|
+ state.DIPointList = [];
|
|
|
+};
|
|
|
//stationChange
|
|
|
-const stationChange = async () => {
|
|
|
- form.value.modelId = "";
|
|
|
- getequipmentmodel_list();
|
|
|
+const stationChange = async (val) => {
|
|
|
+ if (form.value.category == "windturbine") {
|
|
|
+ form.value.modelId = "";
|
|
|
+ state.modelList = props.modelListAll[val];
|
|
|
+ } else {
|
|
|
+ getfetchPointListByBootst();
|
|
|
+ }
|
|
|
};
|
|
|
//modelIdChange
|
|
|
const modelIdChange = async () => {
|
|
|
- getfetchAIPointList();
|
|
|
- getfetchDIPointList();
|
|
|
-};
|
|
|
-//机型
|
|
|
-const getequipmentmodel_list = async () => {
|
|
|
- const { data } = await getStationinfo(form.value.station);
|
|
|
- state.modelList = data[0].modelList;
|
|
|
+ getfetchPointList();
|
|
|
};
|
|
|
-//所属部件
|
|
|
-const getfetchRelatePart = async () => {
|
|
|
- const res = await fetchRelatePart();
|
|
|
- state.relatePartList = res;
|
|
|
-};
|
|
|
-// 查询风场AI、DI测点
|
|
|
-const getfetchAIPointList = async () => {
|
|
|
- const res = await fetchAIPointList(form.value.station, form.value.modelId);
|
|
|
- state.AIPointList = res.sort(function (a, b) {
|
|
|
- return a.uniformCode - b.uniformCode;
|
|
|
- });
|
|
|
+// 根据场站和型号查询测点数据
|
|
|
+const getfetchPointList = async () => {
|
|
|
+ const { data } = await fetchPointList(
|
|
|
+ form.value.stationId,
|
|
|
+ form.value.modelId
|
|
|
+ );
|
|
|
+ if (Object.keys(data).length) {
|
|
|
+ state.AIPointList = data.ai.sort(function (a, b) {
|
|
|
+ return a.uniformCode - b.uniformCode;
|
|
|
+ });
|
|
|
+ state.DIPointList = data.di.sort(function (a, b) {
|
|
|
+ return a.uniformCode - b.uniformCode;
|
|
|
+ });
|
|
|
+ }
|
|
|
};
|
|
|
-const getEditAiList = (station,modelId)=>{
|
|
|
- debugger
|
|
|
- const res = fetchAIPointList(station, modelId);
|
|
|
- state.AIPointList = res.sort(function (a, b) {
|
|
|
- return a.uniformCode - b.uniformCode;
|
|
|
- });
|
|
|
+// 根据升压站查询测点数据
|
|
|
+const getfetchPointListByBootst = async () => {
|
|
|
+ const { data } = await fetchPointListByBootst(form.value.stationId);
|
|
|
+ if (Object.keys(data).length) {
|
|
|
+ state.AIPointList = data.ai.sort(function (a, b) {
|
|
|
+ return a.uniformCode - b.uniformCode;
|
|
|
+ });
|
|
|
+ state.DIPointList = data.di.sort(function (a, b) {
|
|
|
+ return a.uniformCode - b.uniformCode;
|
|
|
+ });
|
|
|
+ }
|
|
|
};
|
|
|
+//筛选AI测点
|
|
|
const filterAIList = computed(() =>
|
|
|
state.AIPointList?.filter(
|
|
|
(data) =>
|
|
@@ -530,6 +671,7 @@ const filterAIList = computed(() =>
|
|
|
data.name.includes(state.AIPointSearch)
|
|
|
)
|
|
|
);
|
|
|
+//筛选DI测点
|
|
|
const filterDIList = computed(() =>
|
|
|
state.DIPointList?.filter(
|
|
|
(data) =>
|
|
@@ -538,12 +680,7 @@ const filterDIList = computed(() =>
|
|
|
data.name.includes(state.DIPointSearch)
|
|
|
)
|
|
|
);
|
|
|
-const getfetchDIPointList = async () => {
|
|
|
- const res = await fetchDIPointList(form.value.station, form.value.modelId);
|
|
|
- state.DIPointList = res.sort(function (a, b) {
|
|
|
- return a.uniformCode - b.uniformCode;
|
|
|
- });
|
|
|
-};
|
|
|
+
|
|
|
// 函数点击事件
|
|
|
const tabFuncRowClickHandle = (row) => {
|
|
|
let elInput = document.getElementById("expressionInput");
|
|
@@ -577,11 +714,11 @@ const tabFuncRowClickHandle = (row) => {
|
|
|
elInput.selectionStart = startPos + func.length - 1;
|
|
|
elInput.selectionEnd = startPos + func.length - 1;
|
|
|
}
|
|
|
- form.value.expressionShow = result; // 赋值给表单中的的字段
|
|
|
+ form.value.expression = result; // 赋值给表单中的的字段
|
|
|
};
|
|
|
//rowDbclick
|
|
|
const rowDbclick = (row) => {
|
|
|
- elInputSplit(row.uniformCode);
|
|
|
+ elInputSplit(row);
|
|
|
};
|
|
|
// 表达式字符串拼接
|
|
|
const elInputSplit = async (val) => {
|
|
@@ -590,35 +727,37 @@ const elInputSplit = async (val) => {
|
|
|
let endPos = elInput.selectionEnd;
|
|
|
if (startPos === undefined || endPos === undefined) return;
|
|
|
let txt = elInput.value;
|
|
|
- let txtSplit = val;
|
|
|
+ let txtSplit = val.uniformCode || val;
|
|
|
let result = txt.substring(0, startPos) + txtSplit + txt.substring(endPos);
|
|
|
elInput.value = result;
|
|
|
elInput.focus();
|
|
|
elInput.selectionStart = startPos + txtSplit.length;
|
|
|
elInput.selectionEnd = startPos + txtSplit.length;
|
|
|
+ form.value.expression = result;
|
|
|
};
|
|
|
-//保存
|
|
|
-const save = async () => {
|
|
|
- const res = await custombj_postSave(form.value);
|
|
|
- console.warn(res);
|
|
|
- if (!res.success) {
|
|
|
- ElMessage.error(res.msg);
|
|
|
- } else {
|
|
|
- ElMessage.success(`保存成功!`);
|
|
|
- closeDialog()
|
|
|
- }
|
|
|
-};
|
|
|
+
|
|
|
//提交
|
|
|
const submitForm = async (formEl) => {
|
|
|
if (!formEl) return;
|
|
|
await formEl.validate((valid, fields) => {
|
|
|
if (valid) {
|
|
|
- save()
|
|
|
+ save();
|
|
|
} else {
|
|
|
console.log("error submit!", fields);
|
|
|
}
|
|
|
});
|
|
|
};
|
|
|
+//保存
|
|
|
+const save = async () => {
|
|
|
+ const res = await custombj_postSave(form.value);
|
|
|
+ console.warn(res);
|
|
|
+ if (res.code != 200) {
|
|
|
+ ElMessage.error(res.msg);
|
|
|
+ } else {
|
|
|
+ ElMessage.success(`保存成功!`);
|
|
|
+ closeDialog();
|
|
|
+ }
|
|
|
+};
|
|
|
//reset
|
|
|
const resetForm = (formEl) => {
|
|
|
formEl.resetFields();
|
|
@@ -636,8 +775,9 @@ const handleClose = () => {
|
|
|
//关闭触发事件
|
|
|
const closeDialog = () => {
|
|
|
resetForm(ruleFormRef.value);
|
|
|
- state.AIPointList = []
|
|
|
- state.DIPointList = []
|
|
|
+ form.value = {};
|
|
|
+ state.AIPointList = [];
|
|
|
+ state.DIPointList = [];
|
|
|
toEmits();
|
|
|
};
|
|
|
</script>
|
|
@@ -675,4 +815,4 @@ const closeDialog = () => {
|
|
|
.el-form--label-top .el-form-item__label {
|
|
|
padding: 0;
|
|
|
}
|
|
|
-</style>
|
|
|
+</style>
|