|
@@ -47,6 +47,7 @@
|
|
|
</template>
|
|
|
<template v-if="item.inputType === 'datePicker'">
|
|
|
<el-date-picker
|
|
|
+ @change="dateup"
|
|
|
v-model="formData[item.prop]"
|
|
|
:size="item.size || 'small'"
|
|
|
type="daterange"
|
|
@@ -331,7 +332,7 @@ export default {
|
|
|
const savedFormData = this.savedFormDataMap[this.$route.name]
|
|
|
this.formItems.forEach(item => {
|
|
|
if (item.queryId && item.setKey) {
|
|
|
- this.getOptions(item.queryId, item.setKey, item.prop)
|
|
|
+ this.getOptions(item.queryId, item.setKey, item.prop,item.coy)
|
|
|
}
|
|
|
if (savedFormData?.[item.prop]) {
|
|
|
this.formData[item.prop] = savedFormData[item.prop]
|
|
@@ -342,6 +343,22 @@ export default {
|
|
|
this.$emit('update:data', this.formData)
|
|
|
},
|
|
|
methods: {
|
|
|
+ dateup (value) {
|
|
|
+ let arr = {
|
|
|
+ fd1:value[0],
|
|
|
+ fd2:value[1],
|
|
|
+ }
|
|
|
+ this.formItems.forEach(item => {
|
|
|
+ if (item.queryId && item.setKey) {
|
|
|
+ this.getOptions(item.queryId, item.setKey, item.prop,arr)
|
|
|
+ }
|
|
|
+ if (savedFormData?.[item.prop]) {
|
|
|
+ this.formData[item.prop] = savedFormData[item.prop]
|
|
|
+ } else if (item.defaultOption) {
|
|
|
+ this.formData[item.prop] = item.defaultOption
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
getData() {
|
|
|
try {
|
|
|
this.formItems.forEach(item => {
|
|
@@ -419,11 +436,11 @@ export default {
|
|
|
break
|
|
|
}
|
|
|
},
|
|
|
- async getOptions(queryId, setKey, prop) {
|
|
|
+ async getOptions(queryId, setKey, prop,cop) {
|
|
|
try {
|
|
|
const { code, returnData, message } = await TempQuery({
|
|
|
serviceId: queryId,
|
|
|
- dataContent: []
|
|
|
+ dataContent: cop
|
|
|
})
|
|
|
if (Number(code) === 0) {
|
|
|
const arr = returnData.map(element => ({
|