| | |
| | | <el-option v-for="(a, i) in queryStatusList" :key="i" :label="a.label" :value="a.value"></el-option> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item label="报告类型" prop="reportType"> |
| | | <el-select v-model="entity.reportType" clearable size="small" @change="refreshTable()"> |
| | | <el-option v-for="item in reportTypeList" :key="item.value" :label="item.label" :value="item.value"></el-option> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item label="下单类别" prop="typeSource"> |
| | | <el-select v-model="entity.typeSource" clearable size="small" @change="refreshTable()"> |
| | | <el-option v-for="(a, i) in typeSourceList" :key="i" :label="a.label" :value="a.value"></el-option> |
| | |
| | | code: null, |
| | | typeSource: null, |
| | | orderType: null, |
| | | materialProp: null |
| | | materialProp: null, |
| | | reportType: null |
| | | }, |
| | | page: { |
| | | current: 1, |
| | |
| | | { label: '抽检', value: '抽检' }, |
| | | { label: '进厂检验', value: '进厂检验' }, |
| | | { label: '季度检验', value: 'Quarterly inspection' }, |
| | | ], |
| | | reportTypeList: [ |
| | | { label: '检测报告', value: 0 }, |
| | | { label: '检验报告', value: 1 }, |
| | | ], |
| | | showInfoDialog: false, // 产业链信息查看 |
| | | isReport: 1, |
| | |
| | | linkMethod: "selectAllByOne", |
| | | }, |
| | | { |
| | | label: '报告类型', |
| | | prop: 'reportType', |
| | | width: '100px', |
| | | dataType: 'tag', |
| | | formatData: (params) => params === 0 ? '检测报告' : '检验报告', |
| | | formatType: (params) => params === 0 ? 'warning' : 'success', |
| | | }, |
| | | { |
| | | label: "下单类别", |
| | | prop: "typeSource", |
| | | width: "100px", |