提交 9ff5a504 authored 作者: 钟是志's avatar 钟是志

优化代码

上级 3d131ce3
......@@ -15,7 +15,6 @@ function OtherCheckRecord({ workId, ...otherProps }) {
const id = workId || getOneStopConfig(pathname);
useEffect(() => {
setData(undefined);
console.log(id);
fetchTemplateById(id).then(res => {
if (res) setData({ ...res, content: '{}' });
});
......
......@@ -44,6 +44,9 @@ const checkNeedWriteAuditInfo = ({ btns, btnValue }) => {
return needWrite;
};
/**
* 流程审批 提交数据
* */
const submitValues = ({
values,
isCloseFlowPath,
......@@ -166,7 +169,7 @@ const submitValues = ({
return false;
}
if (res && res.content && isJSON(res.content)) {
payload.taskForm = res.content;
payload.taskForm = res.content; // 替换表单数据
}
beforeAuditSubmitFunc(payload); // 提交数据到审批接口
});
......
......@@ -30,7 +30,7 @@ export default function prepareShow(postData = {}, content = '', otherParams = {
window.Modal = Modal;
window.moment = moment;
return new Promise((resolve, reject) => {
console.log(agg?.unifiedServicePatternModel?.id); // 表单id;
// console.log(agg?.unifiedServicePatternModel?.id); // 表单id;
if (agg?.unifiedServicePatternModel?.id && (test || getUserInfo().stuNo === 'admin')) {
const SystemConfig = window.specialImportantSystemConfig || {};
console.log('%c' + `${SystemConfig?.gateWayPort}/onestop/#/admin/processServices/modelConfig/templateDetail/designById?id=${agg.unifiedServicePatternModel.id}&token=${getToken()}`, 'color: green;background: white;font-size: 14px');
......
......@@ -137,7 +137,7 @@ export default class ChildForm extends React.Component {
if (!objs) {
return null;
}
console.log(this.props.form.getFieldsValue());
// console.log(this.props.form.getFieldsValue());
if (isMobile) {
return ( // 2022年11月24日 姚新国说的 把干掉两翼留白 解决北电科工作情况考核 移动端样式的问题
......
......@@ -83,10 +83,14 @@ function EditDrawer(props) {
const editFullScreen = () => {
localStorage.setItem('edit-low-code-local', JSON.stringify(lowCodeEdit));
if(process.env.NODE_ENV === 'development'){
window.open('http://scjoyedu.eicp.net:51352/wisdomSchool/#/quanPingBianji?id=' + lowCodeEdit.TEMPLATE);
if (process.env.NODE_ENV === 'development') {
window.open(
'http://scjoyedu.eicp.net:51352/wisdomSchool/#/quanPingBianji?id=' + lowCodeEdit.TEMPLATE,
);
}
window.open(window.location.origin + '/wisdomSchool/#/quanPingBianji?id=' + lowCodeEdit.TEMPLATE);
window.open(
window.location.origin + '/wisdomSchool/#/quanPingBianji?id=' + lowCodeEdit.TEMPLATE,
);
};
return (
......@@ -108,8 +112,9 @@ function EditDrawer(props) {
style={{ marginBottom: '20px' }}
/>
{
loading ? '正在保存中请勿编辑' :
{loading ? (
'正在保存中请勿编辑'
) : (
<>
挂载前执行
<ButtonDiy name={'全屏编辑'} handleClick={editFullScreen} type={'danger'} />
......@@ -129,7 +134,7 @@ function EditDrawer(props) {
保存
</Button>
</>
}
)}
</Drawer>
<div
data-edit-point={'EditDrawer'}
......@@ -139,8 +144,9 @@ function EditDrawer(props) {
}}
onClick={() => {
setShowEdit(!showEdit);
}}
>模板编辑</div>
}}>
模板编辑
</div>
</>
);
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论