| | |
| | | <el-table |
| | | ref="tableDataRef" |
| | | class="tableFixed" |
| | | :data="tableData" |
| | | :data="tableData2" |
| | | :height="isExpandForm?(tableHeight-70):(tableHeight-30)+'px'" |
| | | border |
| | | :summary-method="getSummaries" |
| | |
| | | groupArr: [], |
| | | total: 10, |
| | | tableData: [], |
| | | tableData2: [], |
| | | dialogVisible: false, |
| | | tagArr: [], // |
| | | dialogForm: { |
| | |
| | | } |
| | | |
| | | const res = await PeopleSalaryReportSearch(data) |
| | | this.tableData = res.data |
| | | if (this.form.compute === 'last') { |
| | | this.tableData = res.data |
| | | } |
| | | if (this.form.compute === 'contin') { |
| | | this.tableData2 = res.data |
| | | } |
| | | this.total = res.count |
| | | |
| | | return { code: res.code } |