|
|
@ -23,7 +23,7 @@ |
|
|
:model="searchForm" |
|
|
:model="searchForm" |
|
|
label-width="110px" |
|
|
label-width="110px" |
|
|
class="search-form" |
|
|
class="search-form" |
|
|
@keyup.enter.native="getDataList"> |
|
|
|
|
|
|
|
|
@keyup.enter.native="getDataList(true)"> |
|
|
|
|
|
|
|
|
<!-- 所有查询条件 - 可展开/收起 --> |
|
|
<!-- 所有查询条件 - 可展开/收起 --> |
|
|
<template v-if="searchExpanded"> |
|
|
<template v-if="searchExpanded"> |
|
|
@ -147,7 +147,7 @@ |
|
|
<!-- 操作按钮区域 --> |
|
|
<!-- 操作按钮区域 --> |
|
|
<div class="search-actions"> |
|
|
<div class="search-actions"> |
|
|
<div class="action-left"> |
|
|
<div class="action-left"> |
|
|
<el-button type="primary" @click="getDataList" icon="el-icon-search">查询</el-button> |
|
|
|
|
|
|
|
|
<el-button type="primary" @click="getDataList(true)" icon="el-icon-search">查询</el-button> |
|
|
<el-button @click="resetSearch" icon="el-icon-refresh-left">重置</el-button> |
|
|
<el-button @click="resetSearch" icon="el-icon-refresh-left">重置</el-button> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
@ -389,7 +389,11 @@ export default { |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
// 获取数据列表 |
|
|
// 获取数据列表 |
|
|
getDataList() { |
|
|
|
|
|
|
|
|
getDataList(resetPage = false) { |
|
|
|
|
|
// 如果是点击查询按钮,重置页码为1 |
|
|
|
|
|
if (resetPage) { |
|
|
|
|
|
this.pageIndex = 1 |
|
|
|
|
|
} |
|
|
this.dataListLoading = true |
|
|
this.dataListLoading = true |
|
|
const params = { |
|
|
const params = { |
|
|
page: this.pageIndex, |
|
|
page: this.pageIndex, |
|
|
@ -423,8 +427,8 @@ export default { |
|
|
this.searchForm = { |
|
|
this.searchForm = { |
|
|
interfaceName: '', |
|
|
interfaceName: '', |
|
|
requestId: '', |
|
|
requestId: '', |
|
|
reDocumentNo: '', |
|
|
|
|
|
reDocumentType: '', |
|
|
|
|
|
|
|
|
orderNo: '', |
|
|
|
|
|
interfaceType: '', |
|
|
statusCode: '', |
|
|
statusCode: '', |
|
|
sourceSystem: '', |
|
|
sourceSystem: '', |
|
|
targetSystem: '', |
|
|
targetSystem: '', |
|
|
|