|
@@ -7,182 +7,242 @@
|
|
|
!-->
|
|
|
<template>
|
|
|
<div class="collapse-input-style">
|
|
|
- <el-form label-width="80px"
|
|
|
- label-position="left">
|
|
|
+ <el-form label-width="80px" label-position="left">
|
|
|
<template v-for="(item, index) in options">
|
|
|
- <div v-if="isShowForm(item, '[object Object]')"
|
|
|
- :key="index">
|
|
|
- <el-form-item v-if="inputShow[item.name]"
|
|
|
- :label="item.label"
|
|
|
- :prop="item.name"
|
|
|
- :required="item.required">
|
|
|
- <el-input-number v-if="item.type == 'el-input-number'"
|
|
|
- size="mini"
|
|
|
- style="width:100%"
|
|
|
- v-model="formData[item.name]"
|
|
|
- controls-position="right"
|
|
|
- :placeholder="item.placeholder"
|
|
|
- @change="changed($event, item.name)" />
|
|
|
+ <div v-if="isShowForm(item, '[object Object]')" :key="index">
|
|
|
+ <el-form-item
|
|
|
+ v-if="inputShow[item.name]"
|
|
|
+ :label="item.label"
|
|
|
+ :prop="item.name"
|
|
|
+ :required="item.required"
|
|
|
+ >
|
|
|
+ <el-input-number
|
|
|
+ v-if="item.type == 'el-input-number'"
|
|
|
+ size="mini"
|
|
|
+ style="width:100%"
|
|
|
+ v-model="formData[item.name]"
|
|
|
+ controls-position="right"
|
|
|
+ :placeholder="item.placeholder"
|
|
|
+ @change="changed($event, item.name)"
|
|
|
+ />
|
|
|
|
|
|
- <el-input v-if="item.type == 'el-input-text'"
|
|
|
- v-model.trim="formData[item.name]"
|
|
|
- type="text"
|
|
|
- size="mini"
|
|
|
- placeholder="请输入内容"
|
|
|
- clearable
|
|
|
- @change="changed($event, item.name)" />
|
|
|
+ <el-input
|
|
|
+ v-if="item.type == 'el-input-text'"
|
|
|
+ v-model.trim="formData[item.name]"
|
|
|
+ type="text"
|
|
|
+ size="mini"
|
|
|
+ placeholder="请输入内容"
|
|
|
+ clearable
|
|
|
+ @change="changed($event, item.name)"
|
|
|
+ />
|
|
|
|
|
|
- <el-input v-if="item.type == 'el-input-textarea'"
|
|
|
- v-model.trim="formData[item.name]"
|
|
|
- type="textarea"
|
|
|
- size="mini"
|
|
|
- rows="2"
|
|
|
- placeholder="请输入内容"
|
|
|
- @change="changed($event, item.name)" />
|
|
|
+ <el-input
|
|
|
+ v-if="item.type == 'el-input-textarea'"
|
|
|
+ v-model.trim="formData[item.name]"
|
|
|
+ type="textarea"
|
|
|
+ size="mini"
|
|
|
+ rows="2"
|
|
|
+ placeholder="请输入内容"
|
|
|
+ @change="changed($event, item.name)"
|
|
|
+ />
|
|
|
|
|
|
- <el-switch v-if="item.type == 'el-switch'"
|
|
|
- v-model="formData[item.name]"
|
|
|
- size="mini"
|
|
|
- placeholder="请输入内容"
|
|
|
- @change="changed($event, item.name)" />
|
|
|
+ <el-switch
|
|
|
+ v-if="item.type == 'el-switch'"
|
|
|
+ v-model="formData[item.name]"
|
|
|
+ size="mini"
|
|
|
+ placeholder="请输入内容"
|
|
|
+ @change="changed($event, item.name)"
|
|
|
+ />
|
|
|
|
|
|
- <ColorPicker v-if="item.type == 'vue-color'"
|
|
|
- v-model="formData[item.name]"
|
|
|
- @change="(val) => changed(val, item.name)" />
|
|
|
+ <ColorPicker
|
|
|
+ v-if="item.type == 'vue-color'"
|
|
|
+ v-model="formData[item.name]"
|
|
|
+ @change="val => changed(val, item.name)"
|
|
|
+ />
|
|
|
|
|
|
- <el-upload v-if="item.type == 'el-upload-picture'"
|
|
|
- size="mini"
|
|
|
- action="https://jsonplaceholder.typicode.com/posts/"
|
|
|
- list-type="picture-card" />
|
|
|
+ <el-upload
|
|
|
+ v-if="item.type == 'el-upload-picture'"
|
|
|
+ size="mini"
|
|
|
+ action="https://jsonplaceholder.typicode.com/posts/"
|
|
|
+ list-type="picture-card"
|
|
|
+ />
|
|
|
|
|
|
- <el-radio-group v-if="item.type == 'el-radio-group'"
|
|
|
- v-model="formData[item.name]"
|
|
|
- @change="(val) => changed(val, item.name)">
|
|
|
- <el-radio v-for="itemChild in item.selectOptions"
|
|
|
- :key="itemChild.code"
|
|
|
- :label="itemChild.code">{{ itemChild.name }}</el-radio>
|
|
|
+ <el-radio-group
|
|
|
+ v-if="item.type == 'el-radio-group'"
|
|
|
+ v-model="formData[item.name]"
|
|
|
+ @change="val => changed(val, item.name)"
|
|
|
+ >
|
|
|
+ <el-radio
|
|
|
+ v-for="itemChild in item.selectOptions"
|
|
|
+ :key="itemChild.code"
|
|
|
+ :label="itemChild.code"
|
|
|
+ >{{ itemChild.name }}</el-radio
|
|
|
+ >
|
|
|
</el-radio-group>
|
|
|
|
|
|
- <el-select v-if="item.type == 'el-select'"
|
|
|
- size="mini"
|
|
|
- v-model="formData[item.name]"
|
|
|
- clearable
|
|
|
- placeholder="请选择"
|
|
|
- @change="(val) => changed(val, item.name)">
|
|
|
- <el-option v-for="itemChild in item.selectOptions"
|
|
|
- :key="itemChild.code"
|
|
|
- :label="itemChild.name"
|
|
|
- :value="itemChild.code" />
|
|
|
+ <el-select
|
|
|
+ v-if="item.type == 'el-select'"
|
|
|
+ size="mini"
|
|
|
+ v-model="formData[item.name]"
|
|
|
+ clearable
|
|
|
+ placeholder="请选择"
|
|
|
+ @change="val => changed(val, item.name)"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="itemChild in item.selectOptions"
|
|
|
+ :key="itemChild.code"
|
|
|
+ :label="itemChild.name"
|
|
|
+ :value="itemChild.code"
|
|
|
+ />
|
|
|
</el-select>
|
|
|
|
|
|
- <el-slider v-if="item.type == 'el-slider'"
|
|
|
- v-model="formData[item.name]"
|
|
|
- @change="(val) => changed(val, item.name)" />
|
|
|
+ <el-slider
|
|
|
+ v-if="item.type == 'el-slider'"
|
|
|
+ v-model="formData[item.name]"
|
|
|
+ @change="val => changed(val, item.name)"
|
|
|
+ />
|
|
|
|
|
|
- <el-button v-if="item.type == 'el-button'"
|
|
|
- type="primary"
|
|
|
- plain
|
|
|
- @click="addStaticData">编辑</el-button>
|
|
|
+ <el-button
|
|
|
+ v-if="item.type == 'el-button'"
|
|
|
+ type="primary"
|
|
|
+ plain
|
|
|
+ @click="addStaticData"
|
|
|
+ >编辑</el-button
|
|
|
+ >
|
|
|
|
|
|
<!-- 弹窗 -->
|
|
|
- <el-dialog title="代码编辑"
|
|
|
- :visible.sync="dialogVisibleStaticData"
|
|
|
- width="50%"
|
|
|
- :before-close="handleClose">
|
|
|
- <codemirror v-model.trim="formData[item.name]"
|
|
|
- class="code-mirror"
|
|
|
- :options="optionsJavascript"
|
|
|
- style="height: 190px" />
|
|
|
- <span slot="footer"
|
|
|
- class="dialog-footer">
|
|
|
- <el-button @click="dialogVisibleStaticData = false">取 消</el-button>
|
|
|
- <el-button type="primary"
|
|
|
- @click="saveData">确 定</el-button>
|
|
|
+ <el-dialog
|
|
|
+ title="代码编辑"
|
|
|
+ :visible.sync="dialogVisibleStaticData"
|
|
|
+ width="50%"
|
|
|
+ :before-close="handleClose"
|
|
|
+ >
|
|
|
+ <codemirror
|
|
|
+ v-model.trim="formData[item.name]"
|
|
|
+ class="code-mirror"
|
|
|
+ :options="optionsJavascript"
|
|
|
+ style="height: 190px"
|
|
|
+ />
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
+ <el-button @click="dialogVisibleStaticData = false"
|
|
|
+ >取 消</el-button
|
|
|
+ >
|
|
|
+ <el-button type="primary" @click="saveData">确 定</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
|
</el-form-item>
|
|
|
- <dynamicComponents v-if="item.type == 'dycustComponents' && inputShow[item.name]"
|
|
|
- v-model="formData[item.name]"
|
|
|
- :chart-type="item.chartType" />
|
|
|
+ <dynamicComponents
|
|
|
+ v-if="item.type == 'dycustComponents' && inputShow[item.name]"
|
|
|
+ v-model="formData[item.name]"
|
|
|
+ :chart-type="item.chartType"
|
|
|
+ />
|
|
|
</div>
|
|
|
- <div v-else-if="isShowForm(item, '[object Array]')"
|
|
|
- :key="'a-' + index">
|
|
|
+ <div v-else-if="isShowForm(item, '[object Array]')" :key="'a-' + index">
|
|
|
<el-collapse accordion>
|
|
|
- <el-collapse-item v-for="(itemChild, indexChild) in item"
|
|
|
- :key="indexChild"
|
|
|
- :title="itemChild.name"
|
|
|
- :name="indexChild">
|
|
|
+ <el-collapse-item
|
|
|
+ v-for="(itemChild, indexChild) in item"
|
|
|
+ :key="indexChild"
|
|
|
+ :title="itemChild.name"
|
|
|
+ :name="indexChild"
|
|
|
+ >
|
|
|
<template v-for="(itemChildList, idx) in itemChild.list">
|
|
|
- <el-form-item :key="idx"
|
|
|
- :label="itemChildList.label"
|
|
|
- :prop="itemChildList.name"
|
|
|
- :required="itemChildList.required">
|
|
|
- <el-input-number v-if="itemChildList.type == 'el-input-number'"
|
|
|
- size="mini"
|
|
|
- style="width:100%"
|
|
|
- v-model="formData[itemChildList.name]"
|
|
|
- controls-position="right"
|
|
|
- :placeholder="itemChildList.placeholder"
|
|
|
- @change="changed($event, itemChildList.name)" />
|
|
|
+ <el-form-item
|
|
|
+ :key="idx"
|
|
|
+ :label="itemChildList.label"
|
|
|
+ :prop="itemChildList.name"
|
|
|
+ :required="itemChildList.required"
|
|
|
+ >
|
|
|
+ <el-input-number
|
|
|
+ v-if="itemChildList.type == 'el-input-number'"
|
|
|
+ size="mini"
|
|
|
+ style="width:100%"
|
|
|
+ v-model="formData[itemChildList.name]"
|
|
|
+ controls-position="right"
|
|
|
+ :placeholder="itemChildList.placeholder"
|
|
|
+ @change="changed($event, itemChildList.name)"
|
|
|
+ />
|
|
|
|
|
|
- <el-input v-if="itemChildList.type == 'el-input-text'"
|
|
|
- v-model.trim="formData[itemChildList.name]"
|
|
|
- type="text"
|
|
|
- size="mini"
|
|
|
- placeholder="请输入内容"
|
|
|
- clearable
|
|
|
- @change="changed($event, itemChildList.name)" />
|
|
|
+ <el-input
|
|
|
+ v-if="itemChildList.type == 'el-input-text'"
|
|
|
+ v-model.trim="formData[itemChildList.name]"
|
|
|
+ type="text"
|
|
|
+ size="mini"
|
|
|
+ placeholder="请输入内容"
|
|
|
+ clearable
|
|
|
+ @change="changed($event, itemChildList.name)"
|
|
|
+ />
|
|
|
|
|
|
- <el-input v-if="itemChildList.type == 'el-input-textarea'"
|
|
|
- v-model.trim="formData[itemChildList.name]"
|
|
|
- size="mini"
|
|
|
- type="textarea"
|
|
|
- rows="2"
|
|
|
- placeholder="请输入内容"
|
|
|
- @change="changed($event, itemChildList.name)" />
|
|
|
+ <el-input
|
|
|
+ v-if="itemChildList.type == 'el-input-textarea'"
|
|
|
+ v-model.trim="formData[itemChildList.name]"
|
|
|
+ size="mini"
|
|
|
+ type="textarea"
|
|
|
+ rows="2"
|
|
|
+ placeholder="请输入内容"
|
|
|
+ @change="changed($event, itemChildList.name)"
|
|
|
+ />
|
|
|
|
|
|
- <el-switch v-if="itemChildList.type == 'el-switch'"
|
|
|
- v-model="formData[itemChildList.name]"
|
|
|
- placeholder="请输入内容"
|
|
|
- size="mini"
|
|
|
- @change="changed($event, itemChildList.name)" />
|
|
|
+ <el-switch
|
|
|
+ v-if="itemChildList.type == 'el-switch'"
|
|
|
+ v-model="formData[itemChildList.name]"
|
|
|
+ placeholder="请输入内容"
|
|
|
+ size="mini"
|
|
|
+ @change="changed($event, itemChildList.name)"
|
|
|
+ />
|
|
|
|
|
|
- <ColorPicker v-if="itemChildList.type == 'vue-color'"
|
|
|
- v-model="formData[itemChildList.name]"
|
|
|
- @change="(val) => changed(val, itemChildList.name)" />
|
|
|
+ <ColorPicker
|
|
|
+ v-if="itemChildList.type == 'vue-color'"
|
|
|
+ v-model="formData[itemChildList.name]"
|
|
|
+ @change="val => changed(val, itemChildList.name)"
|
|
|
+ />
|
|
|
|
|
|
- <el-upload v-if="itemChildList.type == 'el-upload-picture'"
|
|
|
- size="mini"
|
|
|
- action="https://jsonplaceholder.typicode.com/posts/"
|
|
|
- list-type="picture-card" />
|
|
|
+ <el-upload
|
|
|
+ v-if="itemChildList.type == 'el-upload-picture'"
|
|
|
+ size="mini"
|
|
|
+ action="https://jsonplaceholder.typicode.com/posts/"
|
|
|
+ list-type="picture-card"
|
|
|
+ />
|
|
|
|
|
|
- <el-radio-group v-if="itemChildList.type == 'el-radio-group'"
|
|
|
- v-model="formData[itemChildList.name]"
|
|
|
- @change="(val) => changed(val, itemChildList.name)">
|
|
|
- <el-radio v-for="it in itemChildList.selectOptions"
|
|
|
- :key="it.code"
|
|
|
- :label="it.code">{{ it.name }}</el-radio>
|
|
|
+ <el-radio-group
|
|
|
+ v-if="itemChildList.type == 'el-radio-group'"
|
|
|
+ v-model="formData[itemChildList.name]"
|
|
|
+ @change="val => changed(val, itemChildList.name)"
|
|
|
+ >
|
|
|
+ <el-radio
|
|
|
+ v-for="it in itemChildList.selectOptions"
|
|
|
+ :key="it.code"
|
|
|
+ :label="it.code"
|
|
|
+ >{{ it.name }}</el-radio
|
|
|
+ >
|
|
|
</el-radio-group>
|
|
|
|
|
|
- <el-select v-if="itemChildList.type == 'el-select'"
|
|
|
- size="mini"
|
|
|
- v-model="formData[itemChildList.name]"
|
|
|
- clearable
|
|
|
- placeholder="请选择"
|
|
|
- @change="(val) => changed(val, itemChildList.name)">
|
|
|
- <el-option v-for="it in itemChildList.selectOptions"
|
|
|
- :key="it.code"
|
|
|
- :label="it.name"
|
|
|
- :value="it.code" />
|
|
|
+ <el-select
|
|
|
+ v-if="itemChildList.type == 'el-select'"
|
|
|
+ size="mini"
|
|
|
+ v-model="formData[itemChildList.name]"
|
|
|
+ clearable
|
|
|
+ placeholder="请选择"
|
|
|
+ @change="val => changed(val, itemChildList.name)"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="it in itemChildList.selectOptions"
|
|
|
+ :key="it.code"
|
|
|
+ :label="it.name"
|
|
|
+ :value="it.code"
|
|
|
+ />
|
|
|
</el-select>
|
|
|
|
|
|
- <el-slider v-if="itemChildList.type == 'el-slider'"
|
|
|
- v-model="formData[itemChildList.name]"
|
|
|
- @change="(val) => changed(val, itemChildList.name)" />
|
|
|
+ <el-slider
|
|
|
+ v-if="itemChildList.type == 'el-slider'"
|
|
|
+ v-model="formData[itemChildList.name]"
|
|
|
+ @change="val => changed(val, itemChildList.name)"
|
|
|
+ />
|
|
|
</el-form-item>
|
|
|
- <customColorComponents v-if="itemChildList.type == 'customColor'"
|
|
|
- :key="'b-' + idx"
|
|
|
- v-model="formData[itemChildList.name]" />
|
|
|
+ <customColorComponents
|
|
|
+ v-if="itemChildList.type == 'customColor'"
|
|
|
+ :key="'b-' + idx"
|
|
|
+ v-model="formData[itemChildList.name]"
|
|
|
+ />
|
|
|
</template>
|
|
|
</el-collapse-item>
|
|
|
</el-collapse>
|
|
@@ -193,44 +253,44 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import ColorPicker from './colorPicker.vue'
|
|
|
-import { codemirror } from 'vue-codemirror' // 引入codeMirror全局实例
|
|
|
-import 'codemirror/lib/codemirror.css' // 核心样式
|
|
|
-import 'codemirror/theme/cobalt.css' // 引入主题后还需要在 options 中指定主题才会生效
|
|
|
+import ColorPicker from "./colorPicker.vue";
|
|
|
+import { codemirror } from "vue-codemirror"; // 引入codeMirror全局实例
|
|
|
+import "codemirror/lib/codemirror.css"; // 核心样式
|
|
|
+import "codemirror/theme/cobalt.css"; // 引入主题后还需要在 options 中指定主题才会生效
|
|
|
// language
|
|
|
-import 'codemirror/mode/vue/vue.js'
|
|
|
-import 'codemirror/mode/javascript/javascript.js'
|
|
|
-import 'codemirror/mode/sql/sql.js'
|
|
|
-import 'codemirror/mode/shell/shell.js'
|
|
|
-import dynamicComponents from './dynamicComponents.vue'
|
|
|
-import customColorComponents from './customColorComponents'
|
|
|
+import "codemirror/mode/vue/vue.js";
|
|
|
+import "codemirror/mode/javascript/javascript.js";
|
|
|
+import "codemirror/mode/sql/sql.js";
|
|
|
+import "codemirror/mode/shell/shell.js";
|
|
|
+import dynamicComponents from "./dynamicComponents.vue";
|
|
|
+import customColorComponents from "./customColorComponents";
|
|
|
export default {
|
|
|
- name: 'DynamicForm',
|
|
|
+ name: "DynamicForm",
|
|
|
components: {
|
|
|
ColorPicker,
|
|
|
codemirror,
|
|
|
dynamicComponents,
|
|
|
- customColorComponents,
|
|
|
+ customColorComponents
|
|
|
},
|
|
|
model: {
|
|
|
- prop: 'value',
|
|
|
- event: 'input',
|
|
|
+ prop: "value",
|
|
|
+ event: "input"
|
|
|
},
|
|
|
props: {
|
|
|
options: Array,
|
|
|
value: {
|
|
|
type: [Object],
|
|
|
- default: () => { },
|
|
|
- },
|
|
|
+ default: () => {}
|
|
|
+ }
|
|
|
},
|
|
|
- data () {
|
|
|
+ data() {
|
|
|
return {
|
|
|
formData: {},
|
|
|
inputShow: {}, // 控制表单是否显示
|
|
|
dialogVisibleStaticData: false,
|
|
|
- validationRules: '',
|
|
|
+ validationRules: "",
|
|
|
optionsJavascript: {
|
|
|
- mode: 'text/javascript',
|
|
|
+ mode: "text/javascript",
|
|
|
tabSize: 2, // 缩进格式
|
|
|
// theme: 'cobalt', // monokai主题,对应主题库 JS 需要提前引入
|
|
|
lineNumbers: true, // 显示行号
|
|
@@ -238,104 +298,107 @@ export default {
|
|
|
styleActiveLine: true, // 高亮选中行
|
|
|
|
|
|
hintOptions: {
|
|
|
- completeSingle: true, // 当匹配只有一项的时候是否自动补全
|
|
|
- },
|
|
|
- },
|
|
|
- }
|
|
|
+ completeSingle: true // 当匹配只有一项的时候是否自动补全
|
|
|
+ }
|
|
|
+ }
|
|
|
+ };
|
|
|
},
|
|
|
watch: {
|
|
|
- value (newValue, oldValue) {
|
|
|
- this.formData = newValue || {}
|
|
|
- },
|
|
|
- options () {
|
|
|
- this.setDefaultValue()
|
|
|
- this.isShowData()
|
|
|
- },
|
|
|
- formData: {
|
|
|
- handler () {
|
|
|
- this.$emit('onChanged', this.formData)
|
|
|
- },
|
|
|
- deep: true,
|
|
|
+ value(newValue, oldValue) {
|
|
|
+ this.formData = newValue || {};
|
|
|
},
|
|
|
+ options(val) {
|
|
|
+ console.log(val);
|
|
|
+ this.setDefaultValue();
|
|
|
+ this.isShowData();
|
|
|
+ }
|
|
|
+ // formData: {
|
|
|
+ // handler () {
|
|
|
+ // this.$emit('onChanged', this.formData)
|
|
|
+ // },
|
|
|
+ // deep: true,
|
|
|
+ // },
|
|
|
},
|
|
|
- created () {
|
|
|
- this.isShowData()
|
|
|
- this.setDefaultValue()
|
|
|
+ created() {
|
|
|
+ this.isShowData();
|
|
|
+ this.setDefaultValue();
|
|
|
},
|
|
|
- mounted () { },
|
|
|
+ mounted() {},
|
|
|
methods: {
|
|
|
// 无论哪个输入框改变 都需要触发事件 将值回传
|
|
|
- changed (val, key) {
|
|
|
+ changed(val, key) {
|
|
|
if (val.extend) {
|
|
|
- this.$set(this.formData, key, val.value)
|
|
|
+ this.$set(this.formData, key, val.value);
|
|
|
} else {
|
|
|
- this.$set(this.formData, key, val)
|
|
|
+ this.$set(this.formData, key, val);
|
|
|
}
|
|
|
- this.$emit('onChanged', this.formData)
|
|
|
+ this.$emit("onChanged", this.formData);
|
|
|
// key为当前用户操作的表单组件
|
|
|
for (var i = 0; i < this.options.length; i++) {
|
|
|
- var item = this.options[i]
|
|
|
+ var item = this.options[i];
|
|
|
if (item.relactiveDom == key) {
|
|
|
- this.inputShow[item.name] = val == item.relactiveDomValue
|
|
|
- this.inputShow = Object.assign({}, this.inputShow)
|
|
|
+ this.inputShow[item.name] = val == item.relactiveDomValue;
|
|
|
+ this.inputShow = Object.assign({}, this.inputShow);
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- saveData () {
|
|
|
- this.$emit('onChanged', this.formData)
|
|
|
- this.dialogVisibleStaticData = false
|
|
|
+ saveData() {
|
|
|
+ this.$emit("onChanged", this.formData);
|
|
|
+ this.dialogVisibleStaticData = false;
|
|
|
},
|
|
|
// 静态数据
|
|
|
- addStaticData () {
|
|
|
- this.dialogVisibleStaticData = true
|
|
|
+ addStaticData() {
|
|
|
+ this.dialogVisibleStaticData = true;
|
|
|
},
|
|
|
- handleClose () {
|
|
|
- this.dialogVisibleStaticData = false
|
|
|
+ handleClose() {
|
|
|
+ this.dialogVisibleStaticData = false;
|
|
|
},
|
|
|
// 组件属性 数据是否展示动态还是静态数据
|
|
|
- isShowData () {
|
|
|
- let currentData = {}
|
|
|
- const data = []
|
|
|
+ isShowData() {
|
|
|
+ let currentData = {};
|
|
|
+ const data = [];
|
|
|
for (let i = 0; i < this.options.length; i++) {
|
|
|
// 添加默认的inputShow值
|
|
|
- this.inputShow[this.options[i].name] = true
|
|
|
+ this.inputShow[this.options[i].name] = true;
|
|
|
if (this.options[i].selectValue) {
|
|
|
- currentData = this.options[i]
|
|
|
+ currentData = this.options[i];
|
|
|
} else {
|
|
|
- data.push(this.options[i])
|
|
|
+ data.push(this.options[i]);
|
|
|
}
|
|
|
}
|
|
|
- data.forEach((el) => {
|
|
|
+ data.forEach(el => {
|
|
|
if (el.relactiveDomValue != currentData.value) {
|
|
|
- this.inputShow[el.name] = false
|
|
|
+ this.inputShow[el.name] = false;
|
|
|
}
|
|
|
- })
|
|
|
+ });
|
|
|
},
|
|
|
// 组件拖入时 赋值
|
|
|
- setDefaultValue () {
|
|
|
+ setDefaultValue() {
|
|
|
if (this.options && this.options.length > 0) {
|
|
|
for (let i = 0; i < this.options.length; i++) {
|
|
|
- const obj = this.options[i]
|
|
|
- if (Object.prototype.toString.call(obj) == '[object Object]') {
|
|
|
- this.formData[this.options[i].name] = this.deepClone(this.options[i].value)
|
|
|
- } else if (Object.prototype.toString.call(obj) == '[object Array]') {
|
|
|
+ const obj = this.options[i];
|
|
|
+ if (Object.prototype.toString.call(obj) == "[object Object]") {
|
|
|
+ this.formData[this.options[i].name] = this.deepClone(
|
|
|
+ this.options[i].value
|
|
|
+ );
|
|
|
+ } else if (Object.prototype.toString.call(obj) == "[object Array]") {
|
|
|
for (let j = 0; j < obj.length; j++) {
|
|
|
- const list = obj[j].list
|
|
|
- list.forEach((el) => {
|
|
|
- this.formData[el.name] = el.value
|
|
|
- })
|
|
|
+ const list = obj[j].list;
|
|
|
+ list.forEach(el => {
|
|
|
+ this.formData[el.name] = el.value;
|
|
|
+ });
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- this.formData = Object.assign({}, this.formData)
|
|
|
+ this.formData = Object.assign({}, this.formData);
|
|
|
}
|
|
|
},
|
|
|
// 是否显示 那种格式
|
|
|
- isShowForm (val, type) {
|
|
|
- return Object.prototype.toString.call(val) == type
|
|
|
- },
|
|
|
- },
|
|
|
-}
|
|
|
+ isShowForm(val, type) {
|
|
|
+ return Object.prototype.toString.call(val) == type;
|
|
|
+ }
|
|
|
+ }
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|