未符合项新增

This commit is contained in:
shenyanpei
2021-11-25 14:49:09 +08:00
parent 841c17731e
commit 577d506c34
2 changed files with 102 additions and 45 deletions
+24 -2
View File
@@ -55,10 +55,32 @@ export function meetingByMonth (params) {
})
}
export function addUn (params) {
export function addUn (closeState, standId,standName,standSerialNumber, itemsNum,itemsName, productType, productLine,
productName, reason, responsibleUnit, dutyEngineer, authEngineer, qaEngineer, qaEngineerName,
authEngineerName, dutyEngineerName, planCloseTime) {
const data = {
closeState,
standSerialNumber, //标准号
standName, //标准名称
standId,
itemsNum, //条款号
itemsName, //条款名称
productType,
productLine, //产品线
productName, //项目名称
reason, //不合规项目
responsibleUnit, //责任部门
dutyEngineer, //责任工程师
authEngineer, //认证工程师
qaEngineer, //质量工程师
qaEngineerName,
authEngineerName,
dutyEngineerName,
planCloseTime, //计划关闭时间
}
return axios({
url: 'api/sarStandUnqualified/sar-stand-unqualified/addOne',
method: 'post',
data: params
data
})
}