00f56e9a by lihua

产品上架主平台审批不需要填写信息

1 parent 139ec6a0
......@@ -1737,7 +1737,7 @@ const passCommonDialogBtnClick = (btn, info) => {
</div>
</ContentWrap>
<ContentWrap id="id-qualityEvaluate"
v-if="tabsInfo.tabs.find(t => t.name == 'qualityEvaluate') || (route.query.type == 'costAssess' && evaDetailInfo.qualityScore != null)"
v-if="tabsInfo.tabs.find(t => t.name == 'qualityEvaluate') || ((route.query.type == 'costAssess' || route.query.type == 'qualityEvaluate') && evaDetailInfo.qualityScore != null)"
title="质量评价" description="资产质量评价信息" expandSwicth style="margin-top: 15px" :isExpand="qualityEvaluateExpand"
@expand="(v) => qualityEvaluateExpand = v">
<div class="list_panel">
......
......@@ -399,6 +399,10 @@ const tableBtnClick = (scope, btn) => {
}
if (type == 'pass') {
if (row.zqName) {
passCommonDialogInfo.value.visible = true;
return;
}
if (getFirstNodePromise.value[row.guid]) {
return;
}
......@@ -430,6 +434,10 @@ const tableBtnClick = (scope, btn) => {
})
}
if (type == 'reject') {
if (row.zqName) {
rejectDialogInfo.value.visible = true;
return;
}
if (getFirstNodePromise1.value[row.guid]) {
return;
}
......
......@@ -1010,6 +1010,10 @@ const btnClick = (btn) => {
subForm.value = { ...form };
submitForm(btn, formEl, true);
} else if (btn.value == 'pass') {
if (flowDetail.value.zqName) {
passCommonDialogInfo.value.visible = true;
return;
}
if (getFirstNodePromise.value) {
return;
}
......@@ -1041,6 +1045,10 @@ const btnClick = (btn) => {
})
}
else if (btn.value == 'reject') {
if (flowDetail.value.zqName) {
rejectDialogInfo.value.visible = true;
return;
}
if (getFirstNodePromise1.value) {
return;
}
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!