提交 6784a49a authored 作者: 钟是志's avatar 钟是志

24768 门户加一个浮动二维码,通过后台内容管理模块维护

上级 bc8b64e3
......@@ -323,6 +323,7 @@ export default class GetDetail extends Component {
btns,
btnValue,
});
debugger;
if(needWriteAuditInfo && !value){
message.warning('请填写审批说明');
return false;
......
......@@ -4,6 +4,7 @@ import { preHandle } from '@/webPublic/one_stop_public/utils/myutils';
import { getToken } from '@/webPublic/one_stop_public/utils/token';
import { callbackSubmitData } from '@/webPublic/one_stop_public/models/callbackExamineProcess';
import { getModal } from '@/webPublic/one_stop_public/utils/utils';
import { isJSON } from '@/webPublic/one_stop_public/copy';
const Modal = getModal();
......@@ -40,11 +41,15 @@ const checkNeedWriteAuditInfo = ({
}) => {
let btnInfo = btns.find(g => g.value + '' === btnValue + '');
let needWrite = false;
if (btnInfo && btnInfo.needAuditInfo === true) {
needWrite = true; // 26589 毕业生毕业去向中签约和改签审核拒绝必须要填审批说明
if (btnInfo && isJSON(btnInfo?.documentation)) {
let documentation = JSON.parse(btnInfo.documentation);
if (documentation.needAuditInfo) {
needWrite = true; // 26589 毕业生毕业去向中签约和改签审核拒绝必须要填审批说明
}
}
return true;
return needWrite;
}
};
const submitValues = ({
......@@ -67,8 +72,7 @@ const submitValues = ({
handleUser,
}) => {
if (isCloseFlowPath) {
}
else if (!radiovalue && isSecond) {
} else if (!radiovalue && isSecond) {
openToast('success', '请选择紧急度');
return;
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论