Commit 327a4eaf authored by 朱彩云's avatar 朱彩云

fix(切换条件分支置为初始值): 切换条件分支置为初始值

parent 99294735
......@@ -305,7 +305,10 @@
</a-col>
<a-col class="flex-col" :lg="4" :sm="12">
<div>
<a-button type="primary" @click="searchData">
<a-button
type="primary"
@click="searchData('init')"
>
<Icon name="ssisearch_active" :size="14" />查询
</a-button>
</div>
......@@ -758,7 +761,7 @@ export default {
patientName: '', // 客户名字
hasBack: 'N'
}
this.searchData()
this.searchData('init')
}
},
created() {
......@@ -836,7 +839,10 @@ export default {
return record.hidden ? 'hide_' : ''
},
// 账单查询
searchData() {
searchData(type) {
if (type === 'init') {
this.pagination.pageNum = 1
}
if (this.activeKey1 === '1') {
this._getNewEOBList()
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment