| | |
| | | <template> |
| | | <div> |
| | | <el-dialog |
| | | :visible.sync="editInspectionDia" |
| | | title="修改检验项" |
| | | width="80%" |
| | | @close="editInspectionDia = false" |
| | | > |
| | | <el-dialog :visible.sync="editInspectionDia" title="修改检验项" width="80%" @close="editInspectionDia = false"> |
| | | <div> |
| | | <el-form :model="entity" :inline="true"> |
| | | <el-form-item label="检验项" prop="outputWorkTime"> |
| | |
| | | </el-form-item> |
| | | </el-form> |
| | | </div> |
| | | <lims-table |
| | | :column="editColumn" |
| | | :table-data="editTableData" |
| | | :table-loading="editLoading" |
| | | :page="page" |
| | | height="560" |
| | | @pagination="pagination" |
| | | > |
| | | <lims-table :column="editColumn" :table-data="editTableData" :table-loading="editLoading" :page="page" |
| | | height="560" @pagination="pagination"> |
| | | </lims-table> |
| | | </el-dialog> |
| | | <el-dialog :visible.sync="editAskDia" title="修改" width="50%"> |
| | |
| | | <el-input v-model="editForm.tell" type="textarea"></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="检验值类型"> |
| | | <el-select |
| | | v-model="editForm.inspectionValueType" |
| | | clearable |
| | | placeholder="请选择" |
| | | size="small" |
| | | style="width: 100%" |
| | | > |
| | | <el-option |
| | | v-for="dict in inspectionValueType" |
| | | :key="dict.value" |
| | | :label="dict.label" |
| | | :value="dict.value" |
| | | ></el-option> |
| | | <el-select v-model="editForm.inspectionValueType" clearable placeholder="请选择" size="small" |
| | | style="width: 100%"> |
| | | <el-option v-for="dict in inspectionValueType" :key="dict.value" :label="dict.label" |
| | | :value="dict.value"></el-option> |
| | | </el-select> |
| | | </el-form-item> |
| | | </el-form> |
| | | <span slot="footer" class="dialog-footer"> |
| | | <el-button @click="editAskDia = false">取 消</el-button> |
| | | <el-button |
| | | :loading="handleEditLoading" |
| | | type="primary" |
| | | @click="handleEdit" |
| | | >确 定</el-button |
| | | > |
| | | <el-button :loading="handleEditLoading" type="primary" @click="handleEdit">确 定</el-button> |
| | | </span> |
| | | </el-dialog> |
| | | </div> |
| | |
| | | minWidth: "120px", |
| | | prop: "model", |
| | | }, |
| | | { label: "检验人", prop: "checkUserName" }, |
| | | { |
| | | dataType: "action", |
| | | width: "80px", |