| | |
| | | </el-option> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item label="物料编码" prop="mmodelCode"> |
| | | <!-- <el-form-item label="物料编码" prop="mmodelCode"> |
| | | <el-input v-model="searchForm.mmodelCode" placeholder="请输入物料编码" @keypress.enter.native="search"></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="工序" prop="procedureId"> |
| | |
| | | :value="item.id"> |
| | | </el-option> |
| | | </el-select> |
| | | </el-form-item> |
| | | </el-form-item> --> |
| | | <el-form-item label="报工时间"> |
| | | <el-date-picker |
| | | v-model="planDate" |
| | |
| | | 'field.main': 'name', |
| | | sorts: [{ direction: 'DESC', property: 'CREATE_TIME' }] |
| | | }) |
| | | |
| | | let tempDate = new Date() |
| | | let year = tempDate.getFullYear() |
| | | let month = tempDate.getMonth() + 1 |
| | | let day = tempDate.getDate() |
| | | this.searchForm.startDate = `${year}-${month}-01` |
| | | this.searchForm.endDate = `${year}-${month}-${day}` |
| | | this.planDate = [this.searchForm.startDate, this.searchForm.endDate] |
| | | this.search() |
| | | }, |
| | | activated() { |
| | |
| | | .catch(err => { |
| | | console.log(err) |
| | | }) |
| | | companyUserExtAllUser({ departmentId: this.$store.state.userInfo.curComDepartment.id }) |
| | | companyUserExtAllUser({ companyId: this.$store.state.userInfo.company.id }) |
| | | .then(res => { |
| | | this.proUsers = res |
| | | }) |