091c7e0c7e72b5803f6635774cd652d5865664fc..ff3e1a52e511b9cef988a5373569266d052a062a
2024-12-10 潘志宝
pointList2
ff3e1a 对比 | 目录
2024-12-10 潘志宝
pointList2
cd09be 对比 | 目录
已修改2个文件
22 ■■■■■ 文件已修改
src/api/data/da/point/index.ts 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/data/point/DaPointForm.vue 17 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/data/da/point/index.ts
@@ -34,6 +34,11 @@
  return request.get({ url: '/data/da/point/list', params })
}
// 查询DaPoint simpleList
export const getPointSimpleList = (params: DaPointPageReqVO) => {
  return request.get({ url: '/data/da/point/simple-list', params })
}
// 查询DaPoint详情
export const getDaPoint = (id: number) => {
  return request.get({ url: `/data/da/point/info/${id}`})
src/views/data/point/DaPointForm.vue
@@ -292,7 +292,7 @@
              filterable
              placeholder="请选择">
              <el-option
                v-for="(item, index) in pointList"
                v-for="(item, index) in pointList2"
                :key="index"
                :label="item.pointName"
                :value="item.pointNo"/>
@@ -326,6 +326,7 @@
import * as DaPoint from '@/api/data/da/point'
import * as TagApi from '@/api/data/channel/tag'
import {DICT_TYPE, getDictOptions, getIntDictOptions} from "@/utils/dict";
import {getPointSimpleList} from "@/api/data/da/point";
defineOptions({name: 'DataDaPointForm'})
@@ -343,6 +344,13 @@
}])
const queryParams = reactive({
  pointTypes: "MEASURE,CONSTANT",
})
const pointList2 = ref([{
  pointName: '',
  pointNo: ''
}])
const queryParams2 = reactive({
  pointTypes: "MEASURE,CONSTANT,CALCULATE",
})
const operatorList = ref(['+', '-', '*', '/', '&', '|', '!', '>', '<'])
const formData = ref({
@@ -405,6 +413,7 @@
  resetForm()
  getSourceOption()
  getPointList()
  getPointList2()
  // 修改时,设置数据
  if (id) {
    formLoading.value = true
@@ -574,7 +583,11 @@
}
const getPointList = async () => {
  pointList.value = await DaPoint.getPointList(queryParams)
  pointList.value = await DaPoint.getPointSimpleList(queryParams)
}
const getPointList2 = async () => {
  pointList2.value = await DaPoint.getPointSimpleList(queryParams2)
}
const getInfo = async (id) => {