| | |
| | | <el-form-item v-show="isExpandForm" label="操作人员" style=" display: flex;"> |
| | | <el-input v-model="form.username" style="width: 200px" placeholder="请输入" /> |
| | | </el-form-item> |
| | | <el-form-item v-show="isExpandForm" label="操作时间" style="display: flex;align-items: center"> |
| | | <el-form-item v-show="isExpandForm" label="报工时间" style="display: flex;align-items: center"> |
| | | <el-date-picker |
| | | v-model="form.operdate" |
| | | type="daterange" |
| | |
| | | :data="tableData" |
| | | :height="isExpandForm?tableHeight:(tableHeight+40)+'px'" |
| | | border |
| | | :summary-method="getSummaries" |
| | | show-summary |
| | | :row-class-name="tableRowClassName" |
| | | :style="{width: 100+'%',height:isExpandForm?tableHeight:(tableHeight+40)+'px',}" |
| | | highlight-current-row |
| | |
| | | sortable="custom" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.unprice">{{ row.unprice }}元</div> |
| | | <div v-if="row.unprice">{{ row.unprice }} 元</div> |
| | | <div v-else>/</div> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | sortable="custom" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.usermoney">{{ row.usermoney }}元</div> |
| | | <div v-if="row.usermoney">{{ row.usermoney }} 元</div> |
| | | <div v-else>/</div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="lm_user" |
| | | label="操作人员" |
| | | label="报工人员" |
| | | width="110" |
| | | sortable="custom" |
| | | /> <el-table-column |
| | | prop="report_date" |
| | | label="报工时间" |
| | | width="160" |
| | | sortable="custom" |
| | | /> |
| | | |
| | |
| | | } |
| | | }) |
| | | }, |
| | | getSummaries(param) { |
| | | const { columns, data } = param |
| | | const sums = [] |
| | | |
| | | columns.forEach((column, index) => { |
| | | if (index === 10) { |
| | | sums[index] = '总价' |
| | | return |
| | | } |
| | | const values = data.map(item => Number(item[column.property])) |
| | | if (column.property === 'usermoney') { |
| | | sums[index] = values.reduce((prev, curr) => { |
| | | const value = Number(curr) |
| | | if (!isNaN(value)) { |
| | | return prev + curr |
| | | } else { |
| | | return prev |
| | | } |
| | | }, 0) |
| | | sums[index] += ' 元' |
| | | } else { |
| | | // sums[index] = 'N/A' |
| | | sums[index] = ' ' |
| | | } |
| | | }) |
| | | this.$nextTick(() => { |
| | | this.$refs.tableDataRef.doLayout() |
| | | }) |
| | | |
| | | return sums |
| | | }, |
| | | async getGroupSalaryReportSearch() { |
| | | let tempDate = this.form.operdate |
| | | if (tempDate.length > 0) { |
| | |
| | | rows: this.form.rows |
| | | |
| | | } |
| | | console.log(data, 1) |
| | | const res = await GroupSalaryReportSearch(data) |
| | | this.tableData = res.data |
| | | this.total = res.count |