|
@@ -18,7 +18,7 @@
|
18
|
18
|
</el-form-item>
|
19
|
19
|
<el-form-item>
|
20
|
20
|
<el-button type="info" @click="clear">清空</el-button>
|
21
|
|
- <el-button type="primary" @click="getBillStatement">搜索</el-button>
|
|
21
|
+ <el-button type="primary" @click="searchData">搜索</el-button>
|
22
|
22
|
</el-form-item>
|
23
|
23
|
</el-form>
|
24
|
24
|
<el-button type="primary" style="margin-left: 20px; margin-bottom: 20px;" @click="exportExcel">导出数据</el-button>
|
|
@@ -147,6 +147,11 @@ export default {
|
147
|
147
|
console.log('error GetBillStatementAll')
|
148
|
148
|
})
|
149
|
149
|
},
|
|
150
|
+ searchData() { // 搜索
|
|
151
|
+ this.formInline.pageNum = 1
|
|
152
|
+ this.formInline.pageSize = 10
|
|
153
|
+ this.getBillStatement()
|
|
154
|
+ },
|
150
|
155
|
showPayType(obj) {
|
151
|
156
|
let str = ''
|
152
|
157
|
switch (obj) {
|