| | |
| | | <el-row> |
| | | <el-col :span="4"> |
| | | <el-form-item label="参数项:"> |
| | | <el-input clearable style="width:200px" v-model="searchForm.param" placeholder="参数项"></el-input> |
| | | <el-input clearable style="width: 100%;" v-model="searchForm.param" placeholder="参数项"></el-input> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="4"> |
| | | <el-col :span="5"> |
| | | <el-form-item label="参数编号:"> |
| | | <el-input clearable style="width:200px" v-model="searchForm.code" placeholder="参数编号"></el-input> |
| | | <el-input clearable style="width: 100%;" v-model="searchForm.code" placeholder="参数编号"></el-input> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="6"> |
| | |
| | | remote('technology_param').then((response) => { |
| | | if (response.data.code === 0) { |
| | | this.typeOptions = response.data.data |
| | | this.optionType = response.data.data |
| | | } |
| | | }) |
| | | }, |