| | |
| | | <!-- </el-select>--> |
| | | <!-- </el-form-item>--> |
| | | <el-form-item v-show="isExpandForm" label="报工人员" style=" display: flex;"> |
| | | <el-input v-model="form.reportname" style="width: 200px" placeholder="请输入" /> |
| | | <!-- <el-input v-model="form.reportname" style="width: 200px" placeholder="请输入" />--> |
| | | <el-select v-model="form.reportname" style="width: 200px" filterable placeholder="请选择"> |
| | | <el-option |
| | | v-for="item in userArr" |
| | | :key="item.usercode" |
| | | :label="item.usercode +' / '+ item.username" |
| | | :value="item.username" |
| | | /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item v-show="isExpandForm" label="报工时间" style="display: flex;align-items: center"> |
| | | <el-date-picker |
| | |
| | | } from '@/api/ReportManager' |
| | | import elDragDialog from '@/directive/el-drag-dialog' |
| | | import waves from '@/directive/waves' |
| | | import { PrentOrganizationNoCompany } from '@/api/GeneralBasicData' |
| | | import { PersonPermissions, PrentOrganizationNoCompany } from '@/api/GeneralBasicData' |
| | | |
| | | export default { |
| | | name: 'PersonSalaryList', |
| | |
| | | ] |
| | | |
| | | }, |
| | | userArr: [], |
| | | |
| | | title_value: '数据导入 / 点检部位', |
| | | code: '4', |
| | |
| | | this.getPeopleSalaryReportSearch().then(res => { |
| | | if (res.code === '200') { |
| | | this.getPrentOrganizationNoCompany() |
| | | |
| | | this.getPersonPermissions() |
| | | // this.getMesOrderStepReportSelectUserGroup() |
| | | // this.getStepSelect() |
| | | } |
| | | }) |
| | | }, |
| | | async getPersonPermissions() { |
| | | const { data: res } = await PersonPermissions() |
| | | this.userArr = res |
| | | }, |
| | | async getPrentOrganizationNoCompany() { |
| | | const { data: res } = await PrentOrganizationNoCompany() |
| | | this.wkshopcodeArr = res |