| | |
| | | </el-col> |
| | | <el-col :span="6"> |
| | | <el-form-item class="addObj-form-item" label="备注:"> |
| | | <el-input v-model="addObj.remark" :autosize="{ minRows: 2, maxRows: 2}" :placeholder="active>1 ? '' : '请输入'" :readonly="active>1" clearable |
| | | <el-input v-model="addObj.remark" :autosize="{ minRows: 2, maxRows: 2}" :placeholder="active>1 ? '' : '请输入'" :disabled="active>1" clearable |
| | | size="small" type="textarea"></el-input> |
| | | </el-form-item> |
| | | </el-col> |
| | |
| | | export default { |
| | | components: {}, |
| | | dicts: ['check_type', 'urgency_level'], |
| | | props: { |
| | | currentId: { |
| | | type: Number, |
| | | default: () => 0 |
| | | } |
| | | }, |
| | | data() { |
| | | return { |
| | | active: '', |
| | | currentId: '', |
| | | sampleSelectionList: [],//样品表格选中数据 |
| | | editTable:[], |
| | | noNeedCheckLoad: false, // 免检按钮loading |
| | |
| | | }, |
| | | mounted() { |
| | | this.active = this.$route.query.active |
| | | this.currentId = this.$route.query.currentId |
| | | this.getUserNowInfo() |
| | | this.selectStandardTreeList() |
| | | this.selectStandardMethods() |