| | |
| | | style="width: 240px;" |
| | | @change="handleQuery" /> |
| | | </el-form-item> |
| | | <el-form-item label="下发状态:"> |
| | | <el-select v-model="searchForm.status" |
| | | placeholder="请选择状态" |
| | | clearable |
| | | filterable |
| | | style="width: 100px"> |
| | | <el-option label="待下发" |
| | | value="0" /> |
| | | <el-option label="部分下发" |
| | | value="1" /> |
| | | <el-option label="已下发" |
| | | value="2" /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item> |
| | | <el-button type="primary" |
| | | @click="handleQuery">搜索</el-button> |
| | |
| | | height: 0, |
| | | startDate: "", |
| | | endDate: "", |
| | | status: "", |
| | | strength: "", |
| | | remarkOne: "", |
| | | remarkTwo: "", |
| | |
| | | } |
| | | |
| | | console.log(mergeForm, "mergeForm"); |
| | | productionPlanCombine(mergeForm) |
| | | const strengthItem = block_strength.value.find(item => item.id === mergeForm.strength); |
| | | const payload = { |
| | | ...mergeForm, |
| | | strength: strengthItem ? strengthItem.label : mergeForm.strength |
| | | }; |
| | | productionPlanCombine(payload) |
| | | .then(res => { |
| | | if (res.code === 200) { |
| | | ElMessage.success("下发成功"); |