|
@@ -346,6 +346,7 @@ export default {
|
|
|
<el-input v-if="column.inputType === 'Input'"
|
|
|
v-model="params[column.key]"
|
|
|
:placeholder="column.placeholder"
|
|
|
+ @keyup.enter.native="fetchList(params, page)"
|
|
|
></el-input>
|
|
|
<dr-popover-select v-if="column.inputType === 'PopoverSelect'"
|
|
|
v-model="params[column.key]"
|
|
@@ -359,6 +360,7 @@ export default {
|
|
|
:data-mapping="column.dataMapping"
|
|
|
:query-params="column.queryParams"
|
|
|
:clearable="column.clearable"
|
|
|
+ @keyup.enter.native="fetchList(params, page)"
|
|
|
></dr-popover-select>
|
|
|
<!-- @keyup.enter.native="useQuery(params, page)" -->
|
|
|
|
|
@@ -370,6 +372,7 @@ export default {
|
|
|
:multiple="column.multiple"
|
|
|
:collapse-tags="column.tags"
|
|
|
style="width: 100%"
|
|
|
+ @keyup.enter.native="fetchList(params, page)"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in dict.type[column.referName]"
|
|
@@ -385,6 +388,7 @@ export default {
|
|
|
:clearable="column.clearable"
|
|
|
:placeholder="column.placeholder"
|
|
|
style="width: 100%"
|
|
|
+ @keyup.enter.native="fetchList(params, page)"
|
|
|
>
|
|
|
<el-option key="N" label="否" value="N"></el-option>
|
|
|
<el-option key="Y" label="是" value="Y"></el-option>
|
|
@@ -402,6 +406,7 @@ export default {
|
|
|
:start-placeholder="column.startPlaceholder"
|
|
|
:clearable="column.clearable"
|
|
|
style="width: 100%"
|
|
|
+ @keyup.enter.native="fetchList(params, page)"
|
|
|
>
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|