Browse Source

update

master
wanggang 1 year ago
parent
commit
1dba8c7286
  1. 4
      code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/components/list/index.js

4
code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/wwwroot/components/list/index.js

@ -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">

Loading…
Cancel
Save