潘志宝
2024-11-22 df90c0c5cfa4de114798015b92120ad8ba8b4826
src/views/data/channel/opcua/tag/TagForm.vue
@@ -36,7 +36,7 @@
          <el-form-item label="是否启用" prop="enabled">
            <el-select v-model="formData.enabled" placeholder="请选择">
              <el-option
                v-for="dict in getBoolDictOptions(DICT_TYPE.IS_ENABLED)"
                v-for="dict in getIntDictOptions(DICT_TYPE.COM_IS_INT)"
                :key="dict.value"
                :label="dict.label"
                :value="dict.value"
@@ -54,8 +54,8 @@
</template>
<script lang="ts" setup>
  import * as OpcuaTagApi from '@/api/data/channel/opcua/tag'
  import { CommonEnabledBool } from '@/utils/constants'
  import { DICT_TYPE, getStrDictOptions, getBoolDictOptions } from '@/utils/dict'
  import {CommonEnabled} from '@/utils/constants'
  import { DICT_TYPE, getStrDictOptions, getIntDictOptions } from '@/utils/dict'
  defineOptions({name: 'OpcuaTagForm'})
@@ -70,7 +70,7 @@
    device: undefined,
    tagName: undefined,
    dataType: undefined,
    enabled: CommonEnabledBool.ENABLE,
    enabled: CommonEnabled.ENABLE,
    address: undefined,
    samplingRate: undefined
  })
@@ -134,7 +134,7 @@
      device: undefined,
      tagName: undefined,
      dataType: undefined,
      enabled: CommonEnabledBool.ENABLE,
      enabled: CommonEnabled.ENABLE,
      address: undefined,
      samplingRate: undefined
    }