123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- <!--
- * @Description: 传入record数据,通过判断record.type,来渲染对应的组件
- * @Author: kcz
- * @Date: 2020-01-02 22:41:48
- * @LastEditors: kcz
- * @LastEditTime: 2021-05-14 17:30:17
- -->
- <template>
- <a-form-model-item
- v-if="
- [
- 'input',
- 'textarea',
- 'date',
- 'time',
- 'number',
- 'radio',
- 'checkbox',
- 'select',
- 'rate',
- 'switch',
- 'slider',
- 'uploadImg',
- 'uploadFile',
- 'cascader',
- 'treeSelect'
- ].includes(record.type)
- "
- :prop="`domains.${index}.${record.model}`"
- :rules="record.rules"
- >
- <!-- 多行文本 -->
- <a-textarea
- :style="`width:${record.options.width}`"
- v-if="record.type === 'textarea'"
- :autoSize="{
- minRows: record.options.minRows,
- maxRows: record.options.maxRows
- }"
- :disabled="record.options.disabled || parentDisabled"
- :placeholder="record.options.placeholder"
- :allowClear="record.options.clearable"
- :maxLength="record.options.maxLength"
- :rows="4"
- :value="value"
- @change="handleChange($event.target.value)"
- />
- <!-- 单选框 -->
- <a-radio-group
- v-else-if="record.type === 'radio'"
- :options="
- !record.options.dynamic
- ? record.options.options
- : dynamicData[record.options.dynamicKey]
- ? dynamicData[record.options.dynamicKey]
- : []
- "
- :disabled="record.options.disabled || parentDisabled"
- :placeholder="record.options.placeholder"
- :value="value"
- :checked="value"
- @change="handleChange($event.target.value)"
- />
- <!-- 多选框 -->
- <a-checkbox-group
- v-else-if="record.type === 'checkbox'"
- :options="
- !record.options.dynamic
- ? record.options.options
- : dynamicData[record.options.dynamicKey]
- ? dynamicData[record.options.dynamicKey]
- : []
- "
- :disabled="record.options.disabled || parentDisabled"
- :placeholder="record.options.placeholder"
- :value="value"
- @change="handleChange"
- />
- <!-- 滑块 -->
- <div
- v-else-if="record.type === 'slider'"
- :style="`width:${record.options.width}`"
- class="slider-box"
- >
- <div class="slider">
- <a-slider
- :disabled="record.options.disabled || parentDisabled"
- :min="record.options.min"
- :max="record.options.max"
- :step="record.options.step"
- :value="value"
- @change="handleChange"
- />
- </div>
- <div class="number" v-if="record.options.showInput">
- <a-input-number
- style="width:100%"
- :disabled="record.options.disabled || parentDisabled"
- :min="record.options.min"
- :max="record.options.max"
- :step="record.options.step"
- :value="value"
- @change="handleChange"
- />
- </div>
- </div>
- <component
- v-else
- :style="`width:${record.options.width}`"
- v-bind="componentOption"
- :min="
- record.options.min || record.options.min === 0
- ? record.options.min
- : -Infinity
- "
- :max="
- record.options.max || record.options.max === 0
- ? record.options.max
- : Infinity
- "
- :count="record.options.max"
- :precision="
- record.options.precision > 50 ||
- (!record.options.precision && record.options.precision !== 0)
- ? null
- : record.options.precision
- "
- :record="record"
- :config="config"
- :disabled="record.options.disabled || parentDisabled"
- :parentDisabled="record.options.disabled || parentDisabled"
- :allowClear="record.options.clearable"
- :dynamicData="dynamicData"
- :filterOption="
- record.options.showSearch
- ? (inputValue, option) => {
- return (
- option.componentOptions.children[0].text
- .toLowerCase()
- .indexOf(inputValue.toLowerCase()) >= 0
- );
- }
- : false
- "
- :treeData="
- !record.options.dynamic
- ? record.options.options
- : dynamicData[record.options.dynamicKey]
- ? dynamicData[record.options.dynamicKey]
- : []
- "
- :options="
- !record.options.dynamic
- ? record.options.options
- : dynamicData[record.options.dynamicKey]
- ? dynamicData[record.options.dynamicKey]
- : []
- "
- :mode="record.options.multiple ? 'multiple' : ''"
- :checked="value"
- :value="value"
- @change="handleChange($event)"
- :is="componentItem"
- ></component>
- </a-form-model-item>
- <!-- 文本 -->
- <a-form-model-item v-else-if="record.type === 'text'">
- <div :style="{ textAlign: record.options.textAlign }">
- <label
- :class="{ 'ant-form-item-required': record.options.showRequiredMark }"
- :style="{
- fontFamily: record.options.fontFamily,
- fontSize: record.options.fontSize,
- color: record.options.color
- }"
- v-text="record.label"
- ></label>
- </div>
- </a-form-model-item>
- <!-- html -->
- <div
- v-else-if="record.type === 'html'"
- v-html="record.options.defaultValue"
- ></div>
- <div v-else>
- <!-- 空 -->
- </div>
- </template>
- <script>
- /*
- * author kcz
- * date 2019-11-20
- */
- // import moment from "moment";
- import UploadFile from "../../UploadFile";
- import UploadImg from "../../UploadImg";
- import KDatePicker from "../../KDatePicker";
- import KTimePicker from "../../KTimePicker";
- import ComponentArray from "../../core/components_use";
- const _ = require("lodash/object");
- export default {
- name: "KFormItem",
- props: [
- "record",
- "domains",
- "index",
- "value",
- "parentDisabled",
- "dynamicData",
- "config"
- ],
- components: {
- UploadImg,
- UploadFile,
- KDatePicker,
- KTimePicker
- },
- computed: {
- componentItem() {
- return ComponentArray[this.record.type];
- },
- componentOption() {
- return _.omit(this.record.options, ["defaultValue", "disabled"]);
- }
- },
- methods: {
- handleChange(e) {
- let value = e;
- if (e.target) {
- value = e.target.value;
- }
- this.$emit("input", value);
- }
- }
- };
- </script>
- <style lang="less" scoped>
- .slider-box {
- display: flex;
- > .slider {
- flex: 1;
- margin-right: 16px;
- }
- > .number {
- width: 70px;
- }
- }
- </style>
|