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

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

parent 99294735
...@@ -305,7 +305,10 @@ ...@@ -305,7 +305,10 @@
</a-col> </a-col>
<a-col class="flex-col" :lg="4" :sm="12"> <a-col class="flex-col" :lg="4" :sm="12">
<div> <div>
<a-button type="primary" @click="searchData"> <a-button
type="primary"
@click="searchData('init')"
>
<Icon name="ssisearch_active" :size="14" />查询 <Icon name="ssisearch_active" :size="14" />查询
</a-button> </a-button>
</div> </div>
...@@ -758,7 +761,7 @@ export default { ...@@ -758,7 +761,7 @@ export default {
patientName: '', // 客户名字 patientName: '', // 客户名字
hasBack: 'N' hasBack: 'N'
} }
this.searchData() this.searchData('init')
} }
}, },
created() { created() {
...@@ -836,7 +839,10 @@ export default { ...@@ -836,7 +839,10 @@ export default {
return record.hidden ? 'hide_' : '' return record.hidden ? 'hide_' : ''
}, },
// 账单查询 // 账单查询
searchData() { searchData(type) {
if (type === 'init') {
this.pagination.pageNum = 1
}
if (this.activeKey1 === '1') { if (this.activeKey1 === '1') {
this._getNewEOBList() this._getNewEOBList()
} else { } 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