This commit is contained in:
parent
52c5114623
commit
654be88752
|
|
@ -8,7 +8,7 @@
|
||||||
ref="queryFormRef"
|
ref="queryFormRef"
|
||||||
style="margin-top: 20px; padding-left: 20px; display: flex"
|
style="margin-top: 20px; padding-left: 20px; display: flex"
|
||||||
>
|
>
|
||||||
<el-form-item label="月份" prop="month">
|
<el-form-item label="月份">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
type="month"
|
type="month"
|
||||||
style="width: 200px"
|
style="width: 200px"
|
||||||
|
|
@ -18,6 +18,30 @@
|
||||||
@change="handleMonthChange"
|
@change="handleMonthChange"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label="分包名称">
|
||||||
|
<el-input
|
||||||
|
clearable
|
||||||
|
style="width: 200px"
|
||||||
|
placeholder="请输入分包名称"
|
||||||
|
v-model.trim="queryParams.subName"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="班组名称">
|
||||||
|
<el-input
|
||||||
|
clearable
|
||||||
|
style="width: 200px"
|
||||||
|
placeholder="请输入班组名称"
|
||||||
|
v-model.trim="queryParams.teamName"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="施工人员">
|
||||||
|
<el-input
|
||||||
|
clearable
|
||||||
|
style="width: 200px"
|
||||||
|
placeholder="请输入施工人员"
|
||||||
|
v-model.trim="queryParams.workerName"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button
|
<el-button
|
||||||
size="mini"
|
size="mini"
|
||||||
|
|
@ -106,6 +130,9 @@ export default {
|
||||||
queryParams: {
|
queryParams: {
|
||||||
month: currentMonth,
|
month: currentMonth,
|
||||||
proId: this.proId || '',
|
proId: this.proId || '',
|
||||||
|
subName: '',
|
||||||
|
teamName: '',
|
||||||
|
workerName: '',
|
||||||
},
|
},
|
||||||
tableList: [],
|
tableList: [],
|
||||||
columnData: [
|
columnData: [
|
||||||
|
|
@ -188,6 +215,9 @@ export default {
|
||||||
const currentMonth = new Date().toISOString().slice(0, 7)
|
const currentMonth = new Date().toISOString().slice(0, 7)
|
||||||
this.queryParams.month = currentMonth
|
this.queryParams.month = currentMonth
|
||||||
this.queryParams.proId = this.proId || ''
|
this.queryParams.proId = this.proId || ''
|
||||||
|
this.queryParams.subName = ''
|
||||||
|
this.queryParams.teamName = ''
|
||||||
|
this.queryParams.workerName = ''
|
||||||
this.getCurrentMonthDays()
|
this.getCurrentMonthDays()
|
||||||
this.getAttOverviewList()
|
this.getAttOverviewList()
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue