zhang_li
8 months ago
6 changed files with 1410 additions and 1 deletions
@ -0,0 +1,30 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
|
||||
|
|
||||
|
// 查询采样过程列表
|
||||
|
export const getListByTempleteCode = async (code) => { |
||||
|
return await request.get({ url: `/qms/inspection-process/getListByTempleteCode?code=`+code}) |
||||
|
} |
||||
|
// 新增
|
||||
|
export const inspectionTemplateCreat = async (data) => { |
||||
|
return await request.post({ url: `/qms/programme-template/create`,data}) |
||||
|
} |
||||
|
// 编辑
|
||||
|
export const inspectionTemplateUpdate = async (data) => { |
||||
|
return await request.put({ url: `/qms/programme-template/update`,data}) |
||||
|
} |
||||
|
// 删除
|
||||
|
export const inspectionTemplateDelete = async (id) => { |
||||
|
return await request.delete({ url: `/qms/programme-template/delete?id=`+id}) |
||||
|
} |
||||
|
// 列表
|
||||
|
export const inspectionTemplatePage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return request.post({ url: '/wms/accountcalendar/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/qms/programme-template/page`, params }) |
||||
|
} |
||||
|
} |
@ -0,0 +1,864 @@ |
|||||
|
<template> |
||||
|
<Dialog |
||||
|
:title="dialogTitle" |
||||
|
v-model="dialogVisible" |
||||
|
:width="dialogWidth" |
||||
|
:close-on-click-modal="false" |
||||
|
:vLoading="formLoading" |
||||
|
> |
||||
|
<div style="max-height: 60vh; overflow-y: auto; padding: 0px 20px"> |
||||
|
<!-- <Form ref="formRefMain" :schema="formAllSchemasMain" :is-col="true" :rules="rules" /> --> |
||||
|
<el-form :model="data" label-width="auto" :rules="rules" ref="formMainRef"> |
||||
|
<el-row> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="编码" prop="code"> |
||||
|
<el-input v-model="data.code" placeholder="根据系统生成" :disabled="true" /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="描述" prop="description"> |
||||
|
<el-input v-model="data.description" placeholder="请填写描述" /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="版本" prop="version"> |
||||
|
<el-input v-model="data.version" placeholder="请填写版本" /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
</el-form> |
||||
|
<el-tabs |
||||
|
v-model="editableTabsValue" |
||||
|
editable |
||||
|
class="demo-tabs" |
||||
|
@edit="handleTabsEdit" |
||||
|
type="border-card" |
||||
|
tab-position="left" |
||||
|
:stretch="false" |
||||
|
> |
||||
|
<el-tab-pane |
||||
|
v-for="item in data.process" |
||||
|
:key="item.name" |
||||
|
:label="item.description" |
||||
|
:name="item.name" |
||||
|
> |
||||
|
<div class="small-title">检验工序</div> |
||||
|
<!-- <Form |
||||
|
:ref="`formRefProcess`+index" |
||||
|
:schema="formAllSchemasProcess" |
||||
|
:is-col="true" |
||||
|
labelWidth="150px" |
||||
|
:rules="rules" |
||||
|
/> --> |
||||
|
<el-form :model="item" label-width="auto" :rules="rules" ref="formProcessRef"> |
||||
|
<el-row :gutter="20"> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="编码" prop="code"> |
||||
|
<el-input v-model="item.code" placeholder="根据系统生成" :disabled="true" /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="检验方案模板编码"> |
||||
|
<el-input |
||||
|
v-model="item.inspectionCode" |
||||
|
placeholder="根据系统生成" |
||||
|
:disabled="true" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="描述" prop="description"> |
||||
|
<el-input v-model="item.description" /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="顺序号" prop="sequenceCode"> |
||||
|
<el-input v-model="item.sequenceCode" /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="检验特性编码"> |
||||
|
<el-input |
||||
|
v-model="item.inspectionCharCode" |
||||
|
placeholder="根据系统生成" |
||||
|
:disabled="true" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
</el-form> |
||||
|
<div class="small-title">检验特性</div> |
||||
|
<el-form :model="item" label-width="auto" :rules="rules" ref="formFeaturesRef"> |
||||
|
<el-row :gutter="20"> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="编码"> |
||||
|
<el-input |
||||
|
v-model="item.inspectionCharacteristicsBaseVO.code" |
||||
|
placeholder="根据系统生成" |
||||
|
:disabled="true" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="描述" prop="inspectionCharacteristicsBaseVO.description"> |
||||
|
<el-input v-model="item.inspectionCharacteristicsBaseVO.description" /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item |
||||
|
label="检验方法编码" |
||||
|
prop="inspectionCharacteristicsBaseVO.inspectionMethodCode" |
||||
|
> |
||||
|
<div style="display: flex; width: 100%"> |
||||
|
<el-input |
||||
|
v-model="item.inspectionCharacteristicsBaseVO.inspectionMethodCode" |
||||
|
disabled |
||||
|
placeholder="请选择检验方法编码" |
||||
|
/> |
||||
|
<el-button |
||||
|
type="info" |
||||
|
plain |
||||
|
style="width: 40px" |
||||
|
@click=" |
||||
|
opensearchTable( |
||||
|
'inspectionMethodCode', |
||||
|
null, |
||||
|
'检验方法', |
||||
|
SamplingProcess.allSchemas, |
||||
|
SamplingProcessApi.getSamplingProcessPage, |
||||
|
null, |
||||
|
false, |
||||
|
null, |
||||
|
item |
||||
|
) |
||||
|
" |
||||
|
><Icon icon="ep:search" |
||||
|
/></el-button> |
||||
|
</div> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item |
||||
|
label="采样过程编码" |
||||
|
prop="inspectionCharacteristicsBaseVO.dynamicUpdateCode" |
||||
|
> |
||||
|
<div style="display: flex; width: 100%"> |
||||
|
<el-input |
||||
|
v-model="item.inspectionCharacteristicsBaseVO.dynamicUpdateCode" |
||||
|
disabled |
||||
|
placeholder="请选择采样过程编码" |
||||
|
/> |
||||
|
<el-button |
||||
|
type="info" |
||||
|
plain |
||||
|
style="width: 40px" |
||||
|
@click=" |
||||
|
opensearchTable( |
||||
|
'dynamicUpdateCode', |
||||
|
null, |
||||
|
'采样过程编码', |
||||
|
SamplingProcess.allSchemas, |
||||
|
SamplingProcessApi.getSamplingProcessPage, |
||||
|
null, |
||||
|
false, |
||||
|
null, |
||||
|
item |
||||
|
) |
||||
|
" |
||||
|
><Icon icon="ep:search" |
||||
|
/></el-button> |
||||
|
</div> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item |
||||
|
label="动态修改规则编码" |
||||
|
prop="inspectionCharacteristicsBaseVO.inspectionMethod" |
||||
|
> |
||||
|
<div style="display: flex; width: 100%"> |
||||
|
<el-input |
||||
|
v-model="item.inspectionCharacteristicsBaseVO.inspectionMethod" |
||||
|
disabled |
||||
|
placeholder="请选择动态修改规则编码" |
||||
|
/> |
||||
|
<el-button |
||||
|
type="info" |
||||
|
plain |
||||
|
style="width: 40px" |
||||
|
@click=" |
||||
|
opensearchTable( |
||||
|
'inspectionMethod', |
||||
|
null, |
||||
|
'动态修改规则编码', |
||||
|
SamplingProcess.allSchemas, |
||||
|
SamplingProcessApi.getSamplingProcessPage, |
||||
|
null, |
||||
|
false, |
||||
|
null, |
||||
|
item |
||||
|
) |
||||
|
" |
||||
|
><Icon icon="ep:search" |
||||
|
/></el-button> |
||||
|
</div> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item |
||||
|
label="是否允许修改特征值" |
||||
|
prop="inspectionCharacteristicsBaseVO.isCanUpdate" |
||||
|
> |
||||
|
<el-select |
||||
|
v-model="item.inspectionCharacteristicsBaseVO.isCanUpdate" |
||||
|
placeholder="请选择是否允许修改特征值" |
||||
|
> |
||||
|
<el-option |
||||
|
v-for="item in isYesList" |
||||
|
:key="item.value" |
||||
|
:label="item.label" |
||||
|
:value="item.value" |
||||
|
/> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item |
||||
|
label="结果录入方式" |
||||
|
prop="inspectionCharacteristicsBaseVO.resultEntryMethod" |
||||
|
> |
||||
|
<el-select |
||||
|
v-model="item.inspectionCharacteristicsBaseVO.resultEntryMethod" |
||||
|
placeholder="请选择结果录入方式" |
||||
|
> |
||||
|
<el-option |
||||
|
v-for="dict in getStrDictOptions( |
||||
|
DICT_TYPE.INSPECTION_CHARACTERISTICS_RESULT_ENTRY |
||||
|
)" |
||||
|
:key="dict.value" |
||||
|
:label="dict.label" |
||||
|
:value="dict.value" |
||||
|
/> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item label="特征类型" prop="inspectionCharacteristicsBaseVO.featureType"> |
||||
|
<!-- <el-input v-model="item.featureType" /> --> |
||||
|
<el-select |
||||
|
v-model="item.inspectionCharacteristicsBaseVO.featureType" |
||||
|
placeholder="请选择特征类型" |
||||
|
@change="changeFeatureType" |
||||
|
> |
||||
|
<el-option |
||||
|
v-for="dict in getStrDictOptions( |
||||
|
DICT_TYPE.INSPECTION_CHARACTERISTICS_FEATURE_TYPE |
||||
|
)" |
||||
|
:key="dict.value" |
||||
|
:label="dict.label" |
||||
|
:value="dict.value" |
||||
|
/> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
|
||||
|
<el-col :span="12" v-if="item.inspectionCharacteristicsBaseVO.featureType == 0"> |
||||
|
<el-form-item |
||||
|
label="是否设定上限" |
||||
|
prop="inspectionCharacteristicsBaseVO.quantifyIsCapping" |
||||
|
> |
||||
|
<el-select |
||||
|
v-model="item.inspectionCharacteristicsBaseVO.quantifyIsCapping" |
||||
|
placeholder="请选择是否设定上限" |
||||
|
@change="changeIsCapping" |
||||
|
> |
||||
|
<el-option |
||||
|
v-for="item in isYesList" |
||||
|
:key="item.value" |
||||
|
:label="item.label" |
||||
|
:value="item.value" |
||||
|
/> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item |
||||
|
label="上限值" |
||||
|
prop="inspectionCharacteristicsBaseVO.quantifyCapping" |
||||
|
v-if="item.inspectionCharacteristicsBaseVO.featureType == 0" |
||||
|
> |
||||
|
<el-input v-model="item.inspectionCharacteristicsBaseVO.quantifyCapping" /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item |
||||
|
prop="inspectionCharacteristicsBaseVO.quantifyIsLowlimit" |
||||
|
label="是否设定下限" |
||||
|
v-if="item.inspectionCharacteristicsBaseVO.featureType == 0" |
||||
|
> |
||||
|
<el-select |
||||
|
v-model="item.inspectionCharacteristicsBaseVO.quantifyIsLowlimit" |
||||
|
placeholder="请选择是否设定下限" |
||||
|
@change="changeLowlimit" |
||||
|
> |
||||
|
<el-option |
||||
|
v-for="item in isYesList" |
||||
|
:key="item.value" |
||||
|
:label="item.label" |
||||
|
:value="item.value" |
||||
|
/> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item |
||||
|
label="下限值" |
||||
|
prop="inspectionCharacteristicsBaseVO.quantifyLowlimit" |
||||
|
v-if="item.inspectionCharacteristicsBaseVO.featureType == 0" |
||||
|
> |
||||
|
<el-input v-model="item.inspectionCharacteristicsBaseVO.quantifyLowlimit" /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item |
||||
|
prop="inspectionCharacteristicsBaseVO.quantifyIsTarget" |
||||
|
label="是否设定目标值" |
||||
|
v-if="item.inspectionCharacteristicsBaseVO.featureType == 0" |
||||
|
> |
||||
|
<el-select |
||||
|
v-model="item.inspectionCharacteristicsBaseVO.quantifyIsTarget" |
||||
|
placeholder="请选择是否设定目标值" |
||||
|
@change="changeIsTarget" |
||||
|
> |
||||
|
<el-option |
||||
|
v-for="item in isYesList" |
||||
|
:key="item.value" |
||||
|
:label="item.label" |
||||
|
:value="item.value" |
||||
|
/> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item |
||||
|
label="目标值" |
||||
|
prop="inspectionCharacteristicsBaseVO.quantifyTarget" |
||||
|
v-if="item.inspectionCharacteristicsBaseVO.featureType == 0" |
||||
|
> |
||||
|
<el-input v-model="item.inspectionCharacteristicsBaseVO.quantifyTarget" /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
|
||||
|
<el-col :span="12"> |
||||
|
<el-form-item |
||||
|
label="计量单位" |
||||
|
prop="inspectionCharacteristicsBaseVO.quantifyUom" |
||||
|
v-if="item.inspectionCharacteristicsBaseVO.featureType == 0" |
||||
|
> |
||||
|
<el-input v-model="item.inspectionCharacteristicsBaseVO.quantifyUom" /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item |
||||
|
label="小数位" |
||||
|
prop="inspectionCharacteristicsBaseVO.quantifyDecimal" |
||||
|
v-if="item.inspectionCharacteristicsBaseVO.featureType == 0" |
||||
|
> |
||||
|
<el-input v-model="item.inspectionCharacteristicsBaseVO.quantifyDecimal" /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="12"> |
||||
|
<el-form-item |
||||
|
label="选择集编码" |
||||
|
prop="inspectionCharacteristicsBaseVO.quantifyQuantifyCode" |
||||
|
v-if="item.inspectionCharacteristicsBaseVO.featureType == 1" |
||||
|
> |
||||
|
<div style="display: flex; width: 100%"> |
||||
|
<el-input |
||||
|
v-model="item.inspectionCharacteristicsBaseVO.quantifyQuantifyCode" |
||||
|
disabled |
||||
|
placeholder="请选择选择集编码" |
||||
|
/> |
||||
|
<el-button |
||||
|
type="info" |
||||
|
plain |
||||
|
style="width: 40px" |
||||
|
@click=" |
||||
|
opensearchTable( |
||||
|
'quantifyQuantifyCode', |
||||
|
null, |
||||
|
'选择集编码', |
||||
|
SamplingProcess.allSchemas, |
||||
|
SamplingProcessApi.getSamplingProcessPage, |
||||
|
null, |
||||
|
false, |
||||
|
null, |
||||
|
item |
||||
|
) |
||||
|
" |
||||
|
><Icon icon="ep:search" |
||||
|
/></el-button> |
||||
|
</div> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
</el-form> |
||||
|
</el-tab-pane> |
||||
|
</el-tabs> |
||||
|
</div> |
||||
|
<template #footer> |
||||
|
<ButtonBase :Butttondata="Butttondata" @button-base-click="buttonBaseClick" /> |
||||
|
</template> |
||||
|
</Dialog> |
||||
|
<Dialog title="修改名称" v-model="dialogVisibleName" width="500px" :close-on-click-modal="false"> |
||||
|
<div style="padding: 0px 20px"> |
||||
|
<el-form ref="nameRef" :model="nameForm"> |
||||
|
<el-form-item |
||||
|
:rules="[{ required: true, message: '请输入名称', trigger: 'blur' }]" |
||||
|
prop="name" |
||||
|
> |
||||
|
<el-input v-model="nameForm.name" style="width: 240px" placeholder="请输入名称" /> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
</div> |
||||
|
<template #footer> |
||||
|
<ButtonBase :Butttondata="Butttondata" @button-base-click="buttonBaseClick1" /> |
||||
|
</template> |
||||
|
</Dialog> |
||||
|
<SearchTable ref="searchTableRef" @searchTableSuccess="searchTableSuccess" /> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import { getCurrentInstance } from 'vue' |
||||
|
import { DICT_TYPE, getStrDictOptions } from '@/utils/dict' |
||||
|
import * as InspectionProcessPageApi from '@/api/qms/inspectionTemplate' |
||||
|
import { SearchTable } from '@/components/SearchTable' |
||||
|
import { SamplingProcess } from '@/views/qms/samplingProcess/samplingProcess.data' |
||||
|
import * as SamplingProcessApi from '@/api/qms/samplingProcess' |
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
|
||||
|
const props = defineProps({ |
||||
|
// 显示窗口宽度设置 |
||||
|
basicFormWidth: { |
||||
|
type: String, |
||||
|
default: '' |
||||
|
}, |
||||
|
// 检验特性表单,列表 相关信息 |
||||
|
formAllSchemasFeatures: { |
||||
|
type: Object, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
// 检验工序表单,列表 相关信息 |
||||
|
formAllSchemasProcess: { |
||||
|
type: Object, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
// 检验模板表单,列表 相关信息 |
||||
|
formAllSchemasMain: { |
||||
|
type: Object, |
||||
|
required: true, |
||||
|
default: null |
||||
|
}, |
||||
|
// 底部按钮集合 |
||||
|
footButttondata: { |
||||
|
type: Array, |
||||
|
required: false, |
||||
|
default: null |
||||
|
} |
||||
|
}) |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
|
||||
|
const dialogVisible = ref(false) // 弹窗的是否展示 |
||||
|
const dialogTitle = ref('') // 弹窗的标题 |
||||
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用 |
||||
|
const formType = ref('') // 表单的类型:create - 新增;update - 修改 |
||||
|
const dialogWidth = ref() |
||||
|
const formMainRef = ref() |
||||
|
const formFeaturesRef = ref() |
||||
|
const formProcessRef = ref() |
||||
|
|
||||
|
const data = ref({ |
||||
|
code: '', |
||||
|
description: '', |
||||
|
version: '', |
||||
|
process: [] |
||||
|
}) |
||||
|
const isYesList = [ |
||||
|
{ |
||||
|
value: true, |
||||
|
label: '是' |
||||
|
}, |
||||
|
{ |
||||
|
value: false, |
||||
|
label: '否' |
||||
|
} |
||||
|
] |
||||
|
const dialogVisibleName = ref(false) |
||||
|
const nameForm = ref({ |
||||
|
name: '' |
||||
|
}) |
||||
|
const nameRef = ref() |
||||
|
if (props.basicFormWidth) { |
||||
|
dialogWidth.value = props.basicFormWidth + '%' |
||||
|
} else { |
||||
|
dialogWidth.value = props.isBusiness ? '60%' : '40%' |
||||
|
} |
||||
|
const rules = ref({ |
||||
|
description: [{ required: true, message: '请填写描述', trigger: 'blur' }], |
||||
|
version: [{ required: true, message: '请填写版本', trigger: 'blur' }], |
||||
|
inspectionCode: [{ required: true, message: '请选择检验方案模板编码', trigger: 'blur' }], |
||||
|
sequenceCode: [{ required: true, message: '请填写顺序号', trigger: 'blur' }], |
||||
|
inspectionCharCode: [{ required: true, message: '请选择检验特性编码', trigger: 'blur' }], |
||||
|
'inspectionCharacteristicsBaseVO.description': [ |
||||
|
{ required: true, message: '请填写描述', trigger: ['blur', 'change'] } |
||||
|
], |
||||
|
'inspectionCharacteristicsBaseVO.inspectionMethodCode': [ |
||||
|
{ required: true, message: '请选择检验方法编码', trigger: 'blur' } |
||||
|
], |
||||
|
'inspectionCharacteristicsBaseVO.dynamicUpdateCode': [ |
||||
|
{ required: true, message: '请选择采样过程编码', trigger: ['blur', 'change'] } |
||||
|
], |
||||
|
'inspectionCharacteristicsBaseVO.inspectionMethod': [ |
||||
|
{ required: true, message: '请选择动态修改规则编码', trigger: ['blur', 'change'] } |
||||
|
], |
||||
|
'inspectionCharacteristicsBaseVO.isCanUpdate': [ |
||||
|
{ required: true, message: '请选择是否允许修改特征值', trigger: ['blur', 'change'] } |
||||
|
], |
||||
|
'inspectionCharacteristicsBaseVO.isDestructionInspection': [ |
||||
|
{ required: true, message: '请选择是否破坏性检验', trigger: ['blur', 'change'] } |
||||
|
], |
||||
|
'inspectionCharacteristicsBaseVO.resultEntryMethod': [ |
||||
|
{ required: true, message: '请选择结果录入方式', trigger: ['blur', 'change'] } |
||||
|
], |
||||
|
'inspectionCharacteristicsBaseVO.featureType': [ |
||||
|
{ required: true, message: '请选择特征类型', trigger: ['blur', 'change'] } |
||||
|
], |
||||
|
'inspectionCharacteristicsBaseVO.quantifyIsCapping': [ |
||||
|
{ required: true, message: '请选择是否设定上限', trigger: ['blur', 'change'] } |
||||
|
], |
||||
|
'inspectionCharacteristicsBaseVO.quantifyIsLowlimit': [ |
||||
|
{ required: true, message: '请选择是否设定下限', trigger: ['blur', 'change'] } |
||||
|
], |
||||
|
'inspectionCharacteristicsBaseVO.quantifyIsTarget': [ |
||||
|
{ required: true, message: '请选择是否设定目标值', trigger: ['blur', 'change'] } |
||||
|
], |
||||
|
|
||||
|
'inspectionCharacteristicsBaseVO.quantifyTarget': [ |
||||
|
{ required: true, message: '请输入目标值', trigger: 'blur' } |
||||
|
], |
||||
|
'inspectionCharacteristicsBaseVO.quantifyCapping': [ |
||||
|
{ required: true, message: '请输入上限值', trigger: 'blur' } |
||||
|
], |
||||
|
'inspectionCharacteristicsBaseVO.quantifyLowlimit': [ |
||||
|
{ required: true, message: '请输入下限值', trigger: 'blur' } |
||||
|
], |
||||
|
'inspectionCharacteristicsBaseVO.quantifyUom': [ |
||||
|
{ required: true, message: '请选择计量单位', trigger: 'blur' } |
||||
|
], |
||||
|
'inspectionCharacteristicsBaseVO.quantifyDecimal': [ |
||||
|
{ required: true, message: '请输入小数位', trigger: 'blur' } |
||||
|
], |
||||
|
'inspectionCharacteristicsBaseVO.quantifyQuantifyCode': [ |
||||
|
{ required: true, message: '请输入选择集编码', trigger: 'blur' } |
||||
|
] |
||||
|
}) |
||||
|
/** 打开弹窗 */ |
||||
|
let tabIndex = 1 |
||||
|
const open = async (type: string, row?: any, masterParmas?: any, titleName?: any) => { |
||||
|
dialogVisible.value = true |
||||
|
if (titleName) { |
||||
|
dialogTitle.value = t('action.' + titleName) |
||||
|
} else { |
||||
|
dialogTitle.value = t('action.' + type) |
||||
|
} |
||||
|
formType.value = type |
||||
|
if (row) { |
||||
|
data.value = row |
||||
|
let list = await InspectionProcessPageApi.getListByTempleteCode(row.code) |
||||
|
list.forEach((item, index) => { |
||||
|
editableTabsValue.value = index + 1 |
||||
|
item.name = index + 1 |
||||
|
}) |
||||
|
data.value.process = list |
||||
|
} else { |
||||
|
data.value = { |
||||
|
code: '', |
||||
|
description: '', |
||||
|
version: '', |
||||
|
process: [] |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
tabIndex = data.value.process.length + 1 |
||||
|
} |
||||
|
defineExpose({ open, dialogVisible, formLoading }) // 提供 open 方法,用于打开弹窗 |
||||
|
import type { TabPaneName } from 'element-plus' |
||||
|
|
||||
|
const editableTabsValue = ref('1') |
||||
|
// const editableTabs = ref([]) |
||||
|
|
||||
|
const handleTabsEdit = (targetName: TabPaneName | undefined, action: 'remove' | 'add') => { |
||||
|
if (action === 'add') { |
||||
|
nameForm.value.name = '' |
||||
|
dialogVisibleName.value = true |
||||
|
} else if (action === 'remove') { |
||||
|
const tabs = data.value.process |
||||
|
let activeName = editableTabsValue.value |
||||
|
if (activeName === targetName) { |
||||
|
tabs.forEach((tab, index) => { |
||||
|
if (tab.name === targetName) { |
||||
|
const nextTab = tabs[index + 1] || tabs[index - 1] |
||||
|
if (nextTab) { |
||||
|
activeName = nextTab.name |
||||
|
} |
||||
|
} |
||||
|
}) |
||||
|
} |
||||
|
editableTabsValue.value = activeName |
||||
|
data.value.process = tabs.filter((tab) => tab.name !== targetName) |
||||
|
} |
||||
|
} |
||||
|
/** 修改名称时间 */ |
||||
|
const buttonBaseClick1 = (val) => { |
||||
|
// 保存 |
||||
|
if (val == 'save') { |
||||
|
if (!nameRef.value) return |
||||
|
nameRef.value.validate((valid, fields) => { |
||||
|
if (valid) { |
||||
|
const newTabName = `${++tabIndex}` |
||||
|
data.value.process.push({ |
||||
|
description: nameForm.value.name, |
||||
|
name: newTabName, |
||||
|
inspectionCode: '', |
||||
|
sequenceCode: '', |
||||
|
inspectionCharCode: '', |
||||
|
inspectionCharacteristicsBaseVO: { |
||||
|
describe: '', |
||||
|
inspectionMethodCode: '', |
||||
|
dynamicUpdateCode: '', |
||||
|
inspectionMethod: '', |
||||
|
isCanUpdate: '', |
||||
|
isDestructionInspection: '', |
||||
|
resultEntryMethod: '', |
||||
|
featureType: '', |
||||
|
quantifyIsCapping: '', |
||||
|
quantifyIsLowlimit: '', |
||||
|
quantifyTarget: '', |
||||
|
quantifyCapping: '', |
||||
|
quantifyLowlimit: '', |
||||
|
quantifyUom: '', |
||||
|
quantifyDecimal: '', |
||||
|
quantifyQuantifyCode: '' |
||||
|
} |
||||
|
}) |
||||
|
console.log(data.value.process) |
||||
|
|
||||
|
editableTabsValue.value = newTabName |
||||
|
dialogVisibleName.value = false |
||||
|
} else { |
||||
|
console.log('error submit!') |
||||
|
return false |
||||
|
} |
||||
|
}) |
||||
|
} |
||||
|
// 关闭 |
||||
|
else if (val == 'close') { |
||||
|
dialogVisibleName.value = false |
||||
|
} |
||||
|
} |
||||
|
const buttonBaseClick = (val) => { |
||||
|
// 保存 |
||||
|
if (val == 'save') { |
||||
|
submitForm() |
||||
|
} |
||||
|
// 关闭 |
||||
|
else if (val == 'close') { |
||||
|
dialogVisible.value = false |
||||
|
} |
||||
|
} |
||||
|
// 传递给父类 |
||||
|
const emit = defineEmits(['submitForm', 'searchTableSuccess']) |
||||
|
const validateForm = (formRef) => { |
||||
|
// console.log(TableBaseForm_Ref.value) |
||||
|
let _lists = formRef?.map((v) => v.validate()) |
||||
|
return Promise.all(_lists) |
||||
|
.then(() => { |
||||
|
return true |
||||
|
}) |
||||
|
.catch(() => { |
||||
|
return false |
||||
|
}) |
||||
|
} |
||||
|
const submitForm = async () => { |
||||
|
try { |
||||
|
const validateForm1 = await validateForm(formProcessRef.value) |
||||
|
console.log(validateForm1) |
||||
|
await formMainRef.value.validate() |
||||
|
if (!data.value.process || data.value.process.length == 0) { |
||||
|
message.error(`请添加工序`) |
||||
|
return; |
||||
|
} |
||||
|
const bol1 = await validateForm(formProcessRef.value) |
||||
|
const bol2 = await validateForm(formFeaturesRef.value) |
||||
|
if (!bol1 || !bol2) { |
||||
|
message.error(`模板中有检验工序和检验特性未填写完全`) |
||||
|
return; |
||||
|
} |
||||
|
if (formType.value == 'create') { |
||||
|
// 主子表——提交请求 |
||||
|
emit('submitForm', formType.value, data) |
||||
|
} else { |
||||
|
// 编辑 |
||||
|
emit('submitForm', formType.value, data) |
||||
|
} |
||||
|
} catch { |
||||
|
console.log(111) |
||||
|
} |
||||
|
} |
||||
|
/** 弹窗按钮 */ |
||||
|
let Butttondata: any = [] |
||||
|
if (props.footButttondata) { |
||||
|
Butttondata = props.footButttondata |
||||
|
} else { |
||||
|
Butttondata = [ |
||||
|
defaultButtons.formSaveBtn(null), // 保存 |
||||
|
defaultButtons.formCloseBtn(null) // 关闭 |
||||
|
] |
||||
|
} |
||||
|
// 选择特征类型 |
||||
|
const changeFeatureType = (e) => { |
||||
|
console.log(e) |
||||
|
} |
||||
|
const searchTableRef = ref() |
||||
|
const opensearchTable = ( |
||||
|
formField, |
||||
|
searchField, |
||||
|
searchTitle, |
||||
|
searchAllSchemas, |
||||
|
searchPage, |
||||
|
searchCondition, |
||||
|
multiple, |
||||
|
type, |
||||
|
row |
||||
|
) => { |
||||
|
console.log(988, row) |
||||
|
const _searchCondition = {} |
||||
|
// 判断查询条件中,是否存在指向主表的数据 |
||||
|
if (searchCondition && searchCondition.length > 0) { |
||||
|
// 转换筛选条件所需 |
||||
|
let filters: any[] = [] |
||||
|
for (var i = 0; i < searchCondition.length; i++) { |
||||
|
// searchCondition.forEach((item) => { |
||||
|
// 查询条件为主表某字段,需要赋值主表数据,数据来源是详情的,赋值需要从row中获取 |
||||
|
if (searchCondition[i].isMainValue) { |
||||
|
_searchCondition[searchCondition[i].key] = formRef.value.formModel[searchCondition[i].value] |
||||
|
? formRef.value.formModel[searchCondition[i].value] |
||||
|
: props.detailData |
||||
|
? props.detailData[searchCondition[i].value] |
||||
|
: row |
||||
|
? row[searchCondition[i].value] |
||||
|
: '' |
||||
|
// 是否含有空参数情况 |
||||
|
let isNull = false |
||||
|
if ( |
||||
|
_searchCondition[searchCondition[i].key] == '' || |
||||
|
_searchCondition[searchCondition[i].key] == undefined |
||||
|
) { |
||||
|
isNull = true |
||||
|
} |
||||
|
if (isNull) { |
||||
|
message.warning( |
||||
|
searchCondition[i].message ? searchCondition[i].message : '前置条件未选择!' |
||||
|
) |
||||
|
return |
||||
|
} |
||||
|
} else { |
||||
|
// 扩展 转换为筛选条件进行查询 |
||||
|
if (searchCondition[i].isSearch) { |
||||
|
filters.push({ |
||||
|
action: searchCondition[i].action, |
||||
|
column: searchCondition[i].key, |
||||
|
value: searchCondition[i].value |
||||
|
}) |
||||
|
} else { |
||||
|
_searchCondition[searchCondition[i].key] = searchCondition[i].value |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
if (filters.length > 0) { |
||||
|
_searchCondition.isSearch = true |
||||
|
_searchCondition.filters = filters |
||||
|
} |
||||
|
} |
||||
|
const _searchTableTitle = searchTitle |
||||
|
const _searchTableAllSchemas = searchAllSchemas |
||||
|
const _searchTablePage = searchPage |
||||
|
searchTableRef.value.open( |
||||
|
_searchTableTitle, |
||||
|
_searchTableAllSchemas, |
||||
|
_searchTablePage, |
||||
|
formField, |
||||
|
searchField, |
||||
|
multiple, |
||||
|
type, |
||||
|
row, |
||||
|
_searchCondition |
||||
|
) |
||||
|
} |
||||
|
// 弹层确定返回所选数据 |
||||
|
// val : 弹层列表row 数据 |
||||
|
const searchTableSuccess = (formField, searchField, val, type, row) => { |
||||
|
console.log(row) |
||||
|
data.value.process.forEach((item) => { |
||||
|
if (item.description == row.description) { |
||||
|
item.inspectionCharacteristicsBaseVO[formField] = val[0].code |
||||
|
} |
||||
|
}) |
||||
|
|
||||
|
// row.inspectionCharacteristicsBaseVO.inspectionMethodCode = val[0].code |
||||
|
// emit('searchTableSuccess', formField, searchField, val, formRef.value, type, row) |
||||
|
} |
||||
|
// 选择是否设定上限值 |
||||
|
const changeIsCapping = (e) => { |
||||
|
if (e) { |
||||
|
rules.value['inspectionCharacteristicsBaseVO.quantifyCapping'][0].required = true |
||||
|
} else { |
||||
|
rules.value['inspectionCharacteristicsBaseVO.quantifyCapping'][0].required = false |
||||
|
} |
||||
|
} |
||||
|
// 选择是否设定下限值 |
||||
|
const changeLowlimit = (e) => { |
||||
|
if (e) { |
||||
|
rules.value['inspectionCharacteristicsBaseVO.quantifyLowlimit'][0].required = true |
||||
|
} else { |
||||
|
rules.value['inspectionCharacteristicsBaseVO.quantifyLowlimit'][0].required = false |
||||
|
} |
||||
|
} |
||||
|
// 选择是否设定目标值 |
||||
|
const changeIsTarget = (e) => { |
||||
|
if (e) { |
||||
|
rules.value['inspectionCharacteristicsBaseVO.quantifyTarget'][0].required = true |
||||
|
} else { |
||||
|
rules.value['inspectionCharacteristicsBaseVO.quantifyTarget'][0].required = false |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
<style scoped> |
||||
|
.small-title { |
||||
|
font-weight: bold; |
||||
|
padding: 0px 10px 10px; |
||||
|
color: #1a8bfc; |
||||
|
font-size: 16px; |
||||
|
} |
||||
|
</style> |
||||
|
<style> |
||||
|
.el-tabs--left .el-tabs__header.is-left { |
||||
|
min-height: 700px !important; |
||||
|
min-width: 150px !important; |
||||
|
} |
||||
|
.el-tabs--left.el-tabs--border-card .el-tabs__item.is-left { |
||||
|
min-width: 120px !important; |
||||
|
} |
||||
|
</style> |
@ -0,0 +1,197 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="InspectionTemplateMain.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="InspectionTemplateMain.allSchemas" |
||||
|
/> |
||||
|
|
||||
|
<!-- 列表 --> |
||||
|
<ContentWrap> |
||||
|
<Table |
||||
|
:columns="tableColumns" |
||||
|
:data="tableObject.tableList" |
||||
|
:loading="tableObject.loading" |
||||
|
:pagination="{ |
||||
|
total: tableObject.total |
||||
|
}" |
||||
|
v-model:pageSize="tableObject.pageSize" |
||||
|
v-model:currentPage="tableObject.currentPage" |
||||
|
v-model:sort="tableObject.sort" |
||||
|
> |
||||
|
<template #reqCode="{row}"> |
||||
|
<el-button type="primary" link @click="openDetail(row, '代码', row.reqCode)"> |
||||
|
<span>{{ row.reqCode }}</span> |
||||
|
</el-button> |
||||
|
</template> |
||||
|
<template #action="{ row }"> |
||||
|
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" /> |
||||
|
</template> |
||||
|
</Table> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 表单弹窗:添加/修改 --> |
||||
|
<AddForm |
||||
|
ref="basicFormRef" |
||||
|
basicFormWidth="80" |
||||
|
:formAllSchemasFeatures="InspectionTemplateFeatures.allSchemas" |
||||
|
:formAllSchemasProcess="InspectionTemplateProcess.allSchemas" |
||||
|
:formAllSchemasMain="InspectionTemplateMain.allSchemas" |
||||
|
:rules="InspectionTemplateRules" |
||||
|
@submitForm="submitForm" |
||||
|
/> |
||||
|
<!-- 详情 --> |
||||
|
<Detail |
||||
|
ref="detailRef" |
||||
|
:isBasic="true" |
||||
|
:allSchemas="InspectionTemplateMain.allSchemas" |
||||
|
/> |
||||
|
|
||||
|
<!-- 导入 --> |
||||
|
<ImportForm ref="importFormRef" url="/wms/agv-locationrelation/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import { InspectionTemplateMain,InspectionTemplateProcess,InspectionTemplateFeatures,InspectionTemplateRules } from './inspectionPlan.data' |
||||
|
|
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
||||
|
import Detail from '@/components/Detail/src/Detail.vue' |
||||
|
import AddForm from './addForm.vue' |
||||
|
import * as InspectionProcessPageApi from '@/api/qms/inspectionTemplate' |
||||
|
|
||||
|
defineOptions({ name: 'AgvLocationrelation' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
|
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref(InspectionTemplateMain.allSchemas.tableColumns) |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: InspectionProcessPageApi.inspectionTemplatePage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({hasPermi:'wms:agv-locationrelation:create'}), // 新增 |
||||
|
// defaultButtons.defaultImportBtn({hasPermi:'wms:agv-locationrelation:import'}), // 导入 |
||||
|
// defaultButtons.defaultExportBtn({hasPermi:'wms:agv-locationrelation:export'}), // 导出 |
||||
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
||||
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
||||
|
defaultButtons.defaultSetBtn(null), // 设置 |
||||
|
// { |
||||
|
// label: '自定义扩展按钮', |
||||
|
// name: 'zdy', |
||||
|
// hide: false, |
||||
|
// type: 'primary', |
||||
|
// icon: 'Select', |
||||
|
// color: '' |
||||
|
// }, |
||||
|
] |
||||
|
|
||||
|
// 头部按钮事件 |
||||
|
const buttonBaseClick = (val, item) => { |
||||
|
if (val == 'add') { // 新增 |
||||
|
openForm('create') |
||||
|
} else if (val == 'import') { // 导入 |
||||
|
handleImport() |
||||
|
} else if (val == 'export') { // 导出 |
||||
|
handleExport() |
||||
|
} else if (val == 'refresh') { // 刷新 |
||||
|
getList() |
||||
|
} else if (val == 'filtrate') { // 筛选 |
||||
|
} else { // 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = [ |
||||
|
defaultButtons.mainListEditBtn({hasPermi:'qms:inspectionTemplate:update'}), // 编辑 |
||||
|
defaultButtons.mainListDeleteBtn({hasPermi:'qms:inspectionTemplate:delete'}), // 删除 |
||||
|
] |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'edit') { // 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'delete') { // 删除 |
||||
|
handleDelete(row.id) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const basicFormRef = ref() |
||||
|
const openForm = (type: string, row?: any) => { |
||||
|
basicFormRef.value.open(type, row) |
||||
|
} |
||||
|
|
||||
|
// form表单提交 |
||||
|
const submitForm = async (formType,data) => { |
||||
|
console.log(data.value) |
||||
|
if (formType === 'create') { |
||||
|
await InspectionProcessPageApi.inspectionTemplateCreat(data.value) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await InspectionProcessPageApi.inspectionTemplateUpdate(data.value) |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
} |
||||
|
basicFormRef.value.dialogVisible = false |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
/** 详情操作 */ |
||||
|
const detailRef = ref() |
||||
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
||||
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicAgvLocationrelation') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await InspectionProcessPageApi.inspectionTemplateDelete(id) |
||||
|
message.success(t('common.delSuccess')) |
||||
|
// 刷新列表 |
||||
|
await getList() |
||||
|
} catch {} |
||||
|
} |
||||
|
|
||||
|
|
||||
|
// 筛选提交 |
||||
|
const searchFormClick = (searchData) => { |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
} |
||||
|
getList() // 刷新当前列表 |
||||
|
} |
||||
|
|
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
getList() |
||||
|
}) |
||||
|
|
||||
|
</script> |
||||
|
./inspectionPlan.data |
@ -0,0 +1,287 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
|
||||
|
// 表单校验
|
||||
|
|
||||
|
export const InspectionTemplateRules = reactive({ |
||||
|
description: [ |
||||
|
{ required: true , message: '请填写描述', trigger: 'blur' } |
||||
|
], |
||||
|
version: [ |
||||
|
{ required: true , message: '请填写版本', trigger: 'blur' } |
||||
|
], |
||||
|
inspectionCode: [ |
||||
|
{ required: true, message: '请选择检验方案模板编码', trigger: 'blur' } |
||||
|
], |
||||
|
sequenceCode: [ |
||||
|
{ required: true, message: '请填写顺序号', trigger: 'blur' } |
||||
|
], |
||||
|
inspectionCharCode: [ |
||||
|
{ required: true, message: '请选择检验特性编码', trigger: 'blur' } |
||||
|
], |
||||
|
describe: [ |
||||
|
{ required: true, message: '请填写描述', trigger: 'blur' } |
||||
|
], |
||||
|
inspectionMethodCode: [ |
||||
|
{ required: true, message: '请选择检验方法编码', trigger: 'blur' } |
||||
|
], |
||||
|
dynamicUpdateCode: [ |
||||
|
{ required: true, message: '请选择采样过程编码', trigger: 'blur' } |
||||
|
], |
||||
|
inspectionMethod: [ |
||||
|
{ required: true, message: '请选择动态修改规则编码', trigger: 'blur' } |
||||
|
], |
||||
|
isCanUpdate: [ |
||||
|
{ required: true, message: '请选择是否允许修改特征值', trigger: 'blur' } |
||||
|
], |
||||
|
isDestructionInspection: [ |
||||
|
{ required: true, message: '请选择是否破坏性检验', trigger: 'blur' } |
||||
|
], |
||||
|
resultEntryMethod: [ |
||||
|
{ required: true, message: '请选择结果录入方式', trigger: 'blur' } |
||||
|
], |
||||
|
featureType: [ |
||||
|
{ required: true, message: '请选择特征类型', trigger: 'blur' } |
||||
|
], |
||||
|
quantifyIsCapping: [ |
||||
|
{ required: true, message: '请选择是否设定上限', trigger: 'blur' } |
||||
|
], |
||||
|
quantifyIsLowlimit: [ |
||||
|
{ required: true, message: '请选择是否设定下限', trigger: 'blur' } |
||||
|
], |
||||
|
quantifyTarget: [ |
||||
|
{ required: true, message: '请输入目标值', trigger: 'blur' } |
||||
|
], |
||||
|
quantifyCapping: [ |
||||
|
{ required: true, message: '请输入上限值', trigger: 'blur' } |
||||
|
], |
||||
|
quantifyLowlimit: [ |
||||
|
{ required: true, message: '请输入下限值', trigger: 'blur' } |
||||
|
], |
||||
|
quantifyquantifyUomLowlimit: [ |
||||
|
{ required: true, message: '请选择计量单位', trigger: 'blur' } |
||||
|
], |
||||
|
quantifyDecimal: [ |
||||
|
{ required: true, message: '请输入小数位', trigger: 'blur' } |
||||
|
], |
||||
|
quantifyQuantifyCode: [ |
||||
|
{ required: true, message: '请输入选择集编码', trigger: 'blur' } |
||||
|
], |
||||
|
}) |
||||
|
export const InspectionTemplateMain = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '编码', |
||||
|
field: 'code', |
||||
|
sort: 'custom', |
||||
|
form:{ |
||||
|
componentProps:{ |
||||
|
disabled:true, |
||||
|
placeholder:'系统自动获取' |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '描述', |
||||
|
field: 'description', |
||||
|
sort: 'custom', |
||||
|
},{ |
||||
|
label: '版本', |
||||
|
field: 'version', |
||||
|
sort: 'custom', |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
||||
|
export const InspectionTemplateProcess = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '编码', |
||||
|
field: 'code', |
||||
|
sort: 'custom', |
||||
|
form:{ |
||||
|
componentProps:{ |
||||
|
disabled:true, |
||||
|
placeholder:'系统自动获取' |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '描述', |
||||
|
field: 'description', |
||||
|
sort: 'custom', |
||||
|
isForm:false |
||||
|
},{ |
||||
|
label: '检验方案模板编码', |
||||
|
field: 'inspectionCode', |
||||
|
sort: 'custom', |
||||
|
},{ |
||||
|
label: '顺序号', |
||||
|
field: 'sequenceCode', |
||||
|
},{ |
||||
|
label: '检验特性编码', |
||||
|
field: 'inspectionCharCode', |
||||
|
sort: 'custom', |
||||
|
} |
||||
|
])) |
||||
|
export const InspectionTemplateFeatures= useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '编码', |
||||
|
field: 'code', |
||||
|
sort: 'custom', |
||||
|
form:{ |
||||
|
componentProps:{ |
||||
|
disabled:true, |
||||
|
placeholder:'系统自动获取' |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '描述', |
||||
|
field: 'describe', |
||||
|
sort: 'custom', |
||||
|
},{ |
||||
|
label: '检验方法编码', |
||||
|
field: 'inspectionMethodCode', |
||||
|
sort: 'custom', |
||||
|
},{ |
||||
|
label: '采样过程编码', |
||||
|
field: 'dynamicUpdateCode', |
||||
|
sort: 'custom', |
||||
|
},{ |
||||
|
label: '动态修改规则编码', |
||||
|
field: 'inspectionMethod', |
||||
|
sort: 'custom', |
||||
|
},{ |
||||
|
label: '是否允许修改特征值', |
||||
|
field: 'isCanUpdate', |
||||
|
sort: 'custom', |
||||
|
|
||||
|
form:{ |
||||
|
component:'Select', |
||||
|
api: () => [{ |
||||
|
value:0, |
||||
|
label:'是' |
||||
|
},{ |
||||
|
value:1, |
||||
|
label:'否' |
||||
|
}], |
||||
|
componentProps:{ |
||||
|
optionsAlias: { |
||||
|
labelField: 'label', |
||||
|
valueField: 'value' |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
},{ |
||||
|
label: '是否破坏性检验', |
||||
|
field: 'isDestructionInspection', |
||||
|
sort: 'custom', |
||||
|
form:{ |
||||
|
component:'Select', |
||||
|
api: () => [{ |
||||
|
value:0, |
||||
|
label:'是' |
||||
|
},{ |
||||
|
value:1, |
||||
|
label:'否' |
||||
|
}], |
||||
|
componentProps:{ |
||||
|
optionsAlias: { |
||||
|
labelField: 'label', |
||||
|
valueField: 'value' |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
},{ |
||||
|
label: '结果录入方式', |
||||
|
field: 'resultEntryMethod', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.INSPECTION_CHARACTERISTICS_RESULT_ENTRY, |
||||
|
dictClass: 'string', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
},{ |
||||
|
label: '特征类型', |
||||
|
field: 'featureType', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.INSPECTION_CHARACTERISTICS_FEATURE_TYPE, |
||||
|
dictClass: 'string', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
},{ |
||||
|
label: '是否设定上限', |
||||
|
field: 'quantifyIsCapping', |
||||
|
sort: 'custom', |
||||
|
form:{ |
||||
|
component:'Select', |
||||
|
api: () => [{ |
||||
|
value:0, |
||||
|
label:'是' |
||||
|
},{ |
||||
|
value:1, |
||||
|
label:'否' |
||||
|
}], |
||||
|
componentProps:{ |
||||
|
optionsAlias: { |
||||
|
labelField: 'label', |
||||
|
valueField: 'value' |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
},{ |
||||
|
label: '是否设定下限', |
||||
|
field: 'quantifyIsLowlimit', |
||||
|
sort: 'custom', |
||||
|
form:{ |
||||
|
component:'Select', |
||||
|
api: () => [{ |
||||
|
value:0, |
||||
|
label:'是' |
||||
|
},{ |
||||
|
value:1, |
||||
|
label:'否' |
||||
|
}], |
||||
|
componentProps:{ |
||||
|
optionsAlias: { |
||||
|
labelField: 'label', |
||||
|
valueField: 'value' |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
},{ |
||||
|
label: '目标值', |
||||
|
field: 'quantifyTarget', |
||||
|
sort: 'custom', |
||||
|
},{ |
||||
|
label: '上限值', |
||||
|
field: 'quantifyCapping', |
||||
|
sort: 'custom', |
||||
|
},{ |
||||
|
label: '下限值', |
||||
|
field: 'quantifyLowlimit', |
||||
|
sort: 'custom', |
||||
|
},{ |
||||
|
label: '计量单位', |
||||
|
field: 'quantifyUom', |
||||
|
sort: 'custom', |
||||
|
},{ |
||||
|
label: '小数位', |
||||
|
field: 'quantifyDecimal', |
||||
|
sort: 'custom', |
||||
|
},{ |
||||
|
label: '选择集编码', |
||||
|
field: 'quantifyQuantifyCode', |
||||
|
sort: 'custom', |
||||
|
form:{ |
||||
|
component:'Select' |
||||
|
} |
||||
|
} |
||||
|
])) |
Loading…
Reference in new issue