| | |
| | | <el-table-column |
| | | prop="code" |
| | | label="检验标准编码" |
| | | show-tooltip-when-overflow |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.isVisible===0">{{ row.code }}</div> |
| | |
| | | <el-table-column |
| | | prop="name" |
| | | label="检验标准名称" |
| | | show-tooltip-when-overflow |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.isVisible===0">{{ row.name }}</div> |
| | |
| | | <el-table-column |
| | | prop="stepcheckitem_desc" |
| | | label="检验标准描述" |
| | | show-tooltip-when-overflow |
| | | > |
| | | <template slot-scope="scope"> |
| | | <el-input |
| | |
| | | prop="result" |
| | | label="检验结果" |
| | | width="100" |
| | | show-tooltip-when-overflow |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.result==='OK'">合格</div> |
| | |
| | | StepCheckItemSelect |
| | | } from '@/api/zlgl' |
| | | import { MesOrderSelectUser } from '@/api/scgl' |
| | | import { getCookie } from '@/utils/auth' |
| | | |
| | | export default { |
| | | name: 'QXDY', |
| | |
| | | }, |
| | | checkStandard: '', // 检验标准 |
| | | checkStandardSelect: [], // 检验标准下拉数组 |
| | | checkUser: '', // 检验人员 |
| | | checkUser: getCookie('navTabId'), // 检验人员 |
| | | checkqty: 0, // 检验数量 |
| | | checkUserSelect: [], // 检验人员下拉数组 |
| | | checkResult: '', // 检验结果 |
| | |
| | | if (this.form.orderstepqrcode.length < 1) { |
| | | return this.$message.info('扫描条码不能为空!') |
| | | } |
| | | if (this.form.wo_code.toString().length === 0) { |
| | | return this.$message.info('未获得工单编码!') |
| | | } |
| | | if (this.checkStandard.length < 1) { |
| | | return this.$message.info('检验标准不能为空!') |
| | | } |
| | |
| | | this.JYTableData = [] |
| | | this.multipleSelection = [] |
| | | this.checkdescr = '' |
| | | this.checkUser = '' |
| | | this.checkUser = getCookie('navTabId') |
| | | this.checkqty = 0 |
| | | this.checkResult = '' |
| | | this.checkStandard = '' |