ny
22 小时以前 282fbc6488f4e8ceb5fda759f963ee88fbf7b999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<script lang="ts" setup>
import { computed, onMounted, unref } from 'vue';
 
import { useMessage } from '@jnpf/hooks';
import { useModal } from '@jnpf/ui/modal';
 
import draggable from 'vuedraggable';
 
import { InterfaceModal } from '#/components/CommonModal';
import { SelectInterfaceBtn } from '#/components/Interface';
 
import { useDynamic } from '../hooks/useDynamic';
import { useField } from '../hooks/useField';
import RuleModal from './RRelationForm/RuleModal.vue';
 
defineOptions({ inheritAttrs: false });
const props = defineProps(['activeData', 'dicOptions']);
const { createMessage } = useMessage();
const [registerModal, { openModal }] = useModal();
const jnpfKey = computed(() => unref(props.activeData).__config__?.jnpfKey);
const { options, allOptions, debounceOnSearch, onFocus, initFieldData } = useField(props.activeData);
const { showType, formFieldsOptions, formFieldsSelectOptions, onRelationFieldChange, onMultipleChange } = useDynamic(props.activeData);
 
const popupTypeOptions = [
  { id: 'dialog', fullName: '居中弹窗' },
  { id: 'drawer', fullName: '右侧弹窗' },
];
const popupWidthOptions = ['600px', '800px', '1000px', '40%', '50%', '60%', '70%', '80%'];
const pageSizeOptions = [
  { id: 20, fullName: '20条' },
  { id: 50, fullName: '50条' },
  { id: 80, fullName: '80条' },
  { id: 100, fullName: '100条' },
];
 
function onInterfaceIdChange(val, row) {
  props.activeData.__config__.transferList = [];
  props.activeData.extraOptions = [];
  props.activeData.columnOptions = [];
  if (!val) {
    props.activeData.interfaceId = '';
    props.activeData.interfaceName = '';
    props.activeData.templateJson = [];
    props.activeData.interfaceHasPage = 0;
    props.activeData.__config__.defaultValue = '';
    initFieldData();
    return;
  }
  if (props.activeData.interfaceId === val) return;
  props.activeData.interfaceId = val;
  props.activeData.interfaceName = row.fullName;
  props.activeData.templateJson = row.parameterJson ? JSON.parse(row.parameterJson).map((o) => ({ ...o, relationField: '', sourceType: 1 })) : [];
  props.activeData.__config__.defaultValue = '';
  props.activeData.interfaceHasPage = row.hasPage;
  if (row.hasPage) props.activeData.hasPage = true;
  initFieldData();
}
function addExtraItem() {
  if (!props.activeData.extraOptions) props.activeData.extraOptions = [];
  props.activeData.extraOptions.push({
    value: '',
    label: '',
  });
}
function addSelectItem() {
  props.activeData.columnOptions.push({
    value: '',
    label: '',
  });
}
function handleTransferRules() {
  if (!props.activeData.interfaceId) return createMessage.warning('请先选择数据接口');
  openModal(true, {
    transferList: props.activeData.__config__.transferList,
    fieldOptions: allOptions,
    formFieldsOptions: unref(formFieldsSelectOptions).filter((o) => isSameSource(o)),
    type: 'popupSelect',
  });
}
function isSameSource(data) {
  const isSubTable = props.activeData.__config__.isSubTable;
  if (isSubTable) return data.__config__.isSubTable && props.activeData.__config__.parentVModel === data.__config__.parentVModel;
  return !data.__config__.isSubTable;
}
function onRuleChange(data) {
  props.activeData.__config__.transferList = data;
}
 
onMounted(() => initFieldData());
</script>
<template>
  <a-form-item label="弹窗标题" v-if="jnpfKey === 'popupSelect'">
    <a-input v-model:value="activeData.popupTitle" placeholder="请输入" />
  </a-form-item>
  <a-form-item label="弹窗类型" v-if="jnpfKey === 'popupSelect' && showType === 'pc'">
    <jnpf-select v-model:value="activeData.popupType" placeholder="请选择" :options="popupTypeOptions" />
  </a-form-item>
  <a-form-item label="弹窗宽度" v-if="jnpfKey === 'popupSelect' && showType === 'pc'">
    <a-select v-model:value="activeData.popupWidth" placeholder="请选择">
      <a-select-option v-for="item in popupWidthOptions" :key="item" :value="item">{{ item }}</a-select-option>
    </a-select>
  </a-form-item>
  <a-form-item>
    <template #label>数据接口<BasicHelp text="支持通过数据接口的参数实现控件之间的联动。" /></template>
    <InterfaceModal :value="activeData.interfaceId" :title="activeData.interfaceName" :source-type="2" popup-title="数据接口" @change="onInterfaceIdChange" />
  </a-form-item>
  <a-form-item label="存储字段">
    <a-auto-complete
      v-model:value="activeData.propsValue"
      placeholder="请输入"
      :options="options"
      @focus="onFocus(activeData.propsValue)"
      @search="debounceOnSearch(activeData.propsValue)" />
  </a-form-item>
  <a-form-item label="回显字段">
    <a-auto-complete
      v-model:value="activeData.relationField"
      placeholder="请输入"
      :options="options"
      @focus="onFocus(activeData.relationField)"
      @search="debounceOnSearch(activeData.relationField)" />
  </a-form-item>
  <a-form-item label="是否缓存">
    <a-switch v-model:checked="activeData.__config__.useCache" />
  </a-form-item>
  <a-form-item v-if="jnpfKey === 'popupSelect'">
    <template #label>填充字段<BasicHelp text="选择数据后,将数据接口的字段值填充到当前表单字段,不支持代码生成。" /></template>
    <a-button block @click="handleTransferRules()">{{ activeData.__config__.transferList?.length ? '编辑填充规则' : '填充规则配置' }}</a-button>
  </a-form-item>
  <a-form-item label="参数设置" v-if="activeData.templateJson?.length">
    <SelectInterfaceBtn :template-json="activeData.templateJson" :field-options="formFieldsOptions" :type="3" @field-change="onRelationFieldChange" />
  </a-form-item>
  <a-divider v-if="jnpfKey === 'popupSelect' && !activeData.__config__.isSubTable">显示字段</a-divider>
  <div class="options-list" v-if="jnpfKey === 'popupSelect' && !activeData.__config__.isSubTable">
    <draggable v-model="activeData.extraOptions" :animation="300" group="extraItem" handle=".option-drag" item-key="uuid">
      <template #item="{ element, index }">
        <div class="select-item">
          <div class="select-line-icon option-drag">
            <i class="icon-ym icon-ym-darg"></i>
          </div>
          <a-input v-model:value="element.label" placeholder="列名" />
          <a-auto-complete
            v-model:value="element.value"
            placeholder="字段"
            :options="options"
            @focus="onFocus(element.value)"
            @search="debounceOnSearch(element.value)" />
          <div class="close-btn select-line-icon" @click="activeData.extraOptions.splice(index, 1)">
            <i class="icon-ym icon-ym-btn-clearn"></i>
          </div>
        </div>
      </template>
    </draggable>
    <div class="add-btn">
      <a-button type="link" pre-icon="icon-ym icon-ym-btn-add" @click="addExtraItem">添加字段</a-button>
    </div>
  </div>
  <a-divider>列表字段</a-divider>
  <div class="options-list">
    <draggable v-model="activeData.columnOptions" :animation="300" group="selectItem" handle=".option-drag" item-key="uuid">
      <template #item="{ element, index }">
        <div class="select-item">
          <div class="select-line-icon option-drag">
            <i class="icon-ym icon-ym-darg"></i>
          </div>
          <a-input v-model:value="element.label" placeholder="列名" />
          <a-auto-complete
            v-model:value="element.value"
            placeholder="字段"
            :options="options"
            @focus="onFocus(element.value)"
            @search="debounceOnSearch(element.value)" />
          <div class="close-btn select-line-icon" @click="activeData.columnOptions.splice(index, 1)">
            <i class="icon-ym icon-ym-btn-clearn"></i>
          </div>
        </div>
      </template>
    </draggable>
    <div class="add-btn">
      <a-button type="link" pre-icon="icon-ym icon-ym-btn-add" @click="addSelectItem">添加字段</a-button>
    </div>
  </div>
  <a-divider>列表分页</a-divider>
  <a-form-item label="分页设置">
    <a-switch v-model:checked="activeData.hasPage" :disabled="!!activeData.interfaceHasPage && activeData.hasPage" />
  </a-form-item>
  <a-form-item label="分页条数" v-if="activeData.hasPage">
    <jnpf-radio v-model:value="activeData.pageSize" :options="pageSizeOptions" option-type="button" button-style="solid" class="right-radio" />
  </a-form-item>
  <a-divider />
  <a-form-item label="能否清空">
    <a-switch v-model:checked="activeData.clearable" />
  </a-form-item>
  <a-form-item label="能否多选" v-if="jnpfKey === 'popupTableSelect'">
    <a-switch v-model:checked="activeData.multiple" @change="onMultipleChange" />
  </a-form-item>
  <RuleModal @register="registerModal" @change="onRuleChange" />
</template>