|
|
@ -33,7 +33,7 @@ export default { |
|
|
|
:hideButton="true" |
|
|
|
:isQueryForm="true" |
|
|
|
> |
|
|
|
<template v-for="item in filterList.filter(o=>o.readOnly)"> |
|
|
|
<template v-for="item in filterList.filter(o=>!o.hidden&&o.readOnly)"> |
|
|
|
<el-form-item :label="config.edit.schema.properties[item.column].title"> |
|
|
|
<app-form-input v-model="item" :schema="config.edit.schema.properties[item.column]" prop="value" /> |
|
|
|
</el-form-item> |
|
|
@ -267,7 +267,7 @@ export default { |
|
|
|
</template> |
|
|
|
<template v-else-if="editFormMode==='filter'"> |
|
|
|
<el-form :model="filterList" inline class="filter"> |
|
|
|
<el-row v-for="(item,index) in filterList"> |
|
|
|
<el-row v-for="(item,index) in filterList.filter(o=>!o.hidden)"> |
|
|
|
<el-col :span="6"> |
|
|
|
<el-select clearable :disabled="item.readOnly" v-model="item.column" :placeholder="$t('字段')"> |
|
|
|
<template v-for="(value, prop) in config.edit.schema.properties"> |
|
|
|