Newer
Older
dxCard-admin / src / views / system / notice / NoticeForm.vue
YFJ on 23 Sep 3 KB 项目推送
<template>
  <div style="min-height: 400px">
    <BasicForm @register="registerForm">
      <template #msgTemplate="{ model, field }">
        <a-select v-model:value="model[field]" placeholder="请选择消息模版" :options="templateOption" @change="handleChange" />
      </template>
      <template #msgContent="{ model, field }">
        <div v-html="model[field]" class="article-content"></div>
      </template>
    </BasicForm>
    <div class="footer-btn" v-if="!formDisabled">
      <a-button @click="submitForm" pre-icon="ant-design:check" type="primary">提 交</a-button>
    </div>
  </div>
</template>
<script lang="ts" setup>
  import { BasicForm, useForm } from '/@/components/Form/index';
  import { getBpmFormSchema } from './notice.data';
  import { getTempList, queryById, saveOrUpdate } from './notice.api';
  import { computed, ref } from 'vue';
  // 定义属性
  const props = defineProps({
    formData: {
      type: Object,
      default: () => ({}),
    },
  });
  //表单禁用
  const formDisabled = computed(() => {
    if (props.formData.disabled === false) {
      return false;
    }
    return true;
  });
  const templateOption = ref([]);
  //表单配置
  const [registerForm, { resetFields, setFieldsValue, validate }] = useForm({
    schemas: getBpmFormSchema(props.formData),
    showActionButtonGroup: false,
    disabled: formDisabled.value,
    labelWidth: 100,
    baseRowStyle: { marginTop: '10px' },
    baseColProps: { xs: 24, sm: 12, md: 12, lg: 12, xl: 12, xxl: 12 },
  });

  //表单提交
  async function submitForm() {
    let values = await validate();
    if (values.msgType === 'ALL') {
      values.userIds = '';
    } else {
      values.userIds += ',';
    }
    console.log('表单数据', values);
    await saveOrUpdate(values, true);
  }
  //初始化模板
  async function initTemplate() {
    const res = await getTempList({ templateCategory: 'notice', pageSize: 100 });
    console.log('res', res);
    if (res.records && res.records.length > 0) {
      templateOption.value = res.records.map((item) => {
        return {
          label: item.templateName,
          value: item.templateCode,
          content: item.templateContent,
        };
      });
    }
  }
  /**
   * 模版修改
   * @param val
   */
  function handleChange(val) {
    const content = templateOption.value.find((item: any) => item.value === val)?.content;
    if (content) {
      setFieldsValue({
        msgContent: content,
      });
    }
  }
  /**
   * 加载数据
   */
  async function initFormData() {
    let res = await queryById({ id: props.formData.dataId });
    if (res.success) {
      //重置表单
      await resetFields();
      const record = res.result;
      if (record.userIds) {
        record.userIds = record.userIds.substring(0, record.userIds.length - 1);
      }
      //表单赋值
      await setFieldsValue({
        ...record,
      });
    }
  }
  //加载模版
  initTemplate();
  //加载数据
  initFormData();
</script>
<style lang="less" scoped>
  .footer-btn {
    width: 100%;
    text-align: center;
  }
  .article-content {
    max-width: 100%;
    max-height: 500px;
    overflow-y: auto;
  }
</style>