MappingsForm.vue 4.94 KB
<template>
  <div
    v-for="(param, index) in dynamicInput.params"
    :key="index"
    style="display: flex; margin-top: 0.25vh"
  >
    <a-input
      :disabled="true"
      placeholder="设备"
      v-model:value="param.key"
      style="width: 38%; margin-bottom: 5px; margin-left: 1vh"
      @change="emitChange"
    />
    <Select
      placeholder="请选择设备属性"
      v-model:value="param.dataType"
      style="width: 160px; margin-left: 1.8vw"
      :options="selectOptions"
      @change="emitChange"
    />
    <MinusCircleOutlined
      v-if="dynamicInput.params.length > min"
      class="dynamic-delete-button"
      @click="remove(param)"
      style="width: 50px; display: none"
    />
  </div>
  <div style="display: none">
    <a-button type="text" style="width: 28%; margin-top: 0.25vh" @click="add">
      <PlusCircleOutlined />
      Add mapping
    </a-button>
  </div>
</template>
<script lang="ts">
  import { MinusCircleOutlined, PlusCircleOutlined } from '@ant-design/icons-vue';
  import { defineComponent, reactive, UnwrapRef, watchEffect, ref } from 'vue';
  import { propTypes } from '/@/utils/propTypes';
  import { SelectTypes } from 'ant-design-vue/es/select';
  import { Select } from 'ant-design-vue';
  import { screenLinkPageByDeptIdGetDevice } from '/@/api/ruleengine/ruleengineApi';
  import { getAttribute } from '/@/api/ruleengine/ruleengineApi';

  interface Params {
    [x: string]: string;
    dataType: string;
    key: string;
  }

  export default defineComponent({
    name: 'JAddInput',
    components: {
      MinusCircleOutlined,
      PlusCircleOutlined,
      Select,
    },
    //--------------不继承Antd Design Vue Input的所有属性 否则控制台报大片警告--------------
    inheritAttrs: false,
    props: {
      value: propTypes.array.def([]),
      //自定义删除按钮多少才会显示
      min: propTypes.integer.def(0),
      orgId: propTypes.string.def(''),
    },
    emits: ['change', 'update:value', 'dynamicReduceHeight', 'dynamicAddHeight'],
    setup(props, { emit }) {
      const selectOptions = ref<SelectTypes['options']>([]);

      //input动态数据
      const dynamicInput: UnwrapRef<{ params: Params[] }> = reactive({ params: [] });
      //删除Input
      const remove = (item: Params) => {
        let index = dynamicInput.params.indexOf(item);
        if (index !== -1) {
          dynamicInput.params.splice(index, 1);
        }
        emitChange();
        emit('dynamicReduceHeight');
      };

      //新增Input
      const add = () => {
        dynamicInput.params.push({
          dataType: 'STRING',
          key: '',
        });
        emitChange();
        emit('dynamicAddHeight');
      };

      //监听传入数据value
      watchEffect(() => {
        initVal();
      });

      /**
       * 初始化数值
       */
      async function initVal() {
        dynamicInput.params = [];
        if (props.value) {
          if (props.orgId) {
            const res = await getAttribute(props.orgId, props.value.join(','));
            selectOptions.value = res.map((o) => {
              return {
                label: o,
                value: o,
              };
            });
            const { items } = await screenLinkPageByDeptIdGetDevice({
              organizationId: props.orgId,
            });
            const options = items.map((item) => {
              return {
                label: item.name,
                value: item.tbDeviceId,
              };
            });
            const temp: any = [];
            options.forEach((f) => {
              props.value.forEach((f1) => {
                if (f1 == f.value) {
                  temp.push({
                    label: f.label,
                    value: f.value,
                  });
                }
              });
            });
            let jsonObj = temp;
            jsonObj.forEach((item: Params) => {
              dynamicInput.params.push({
                dataType: item.dataType,
                key: item.label,
                value: item.value,
              });
            });
          }
        }
      }
      /**
       * 数值改变
       */
      function emitChange() {
        let obj: any = [];
        if (dynamicInput.params.length > 0) {
          dynamicInput.params.forEach((item: Params) => {
            obj.push({
              attr: item.dataType,
              tbDeviceId: item.value,
            });
          });
        }
        console.log('数值改变', obj);
        emit('change', obj);
        emit('update:value', obj);
      }

      return {
        dynamicInput,
        emitChange,
        remove,
        add,
        selectOptions,
      };
    },
  });
</script>
<style scoped>
  .dynamic-delete-button {
    cursor: pointer;
    position: relative;
    top: 4px;
    font-size: 24px;
    color: #999;
    transition: all 0.3s;
  }

  .dynamic-delete-button:hover {
    color: #777;
  }

  .dynamic-delete-button[disabled] {
    cursor: not-allowed;
    opacity: 0.5;
  }
</style>