提交 2579c3e2 authored 作者: 钟是志's avatar 钟是志

流程增加样式

上级 2ae40e2a
......@@ -137,6 +137,22 @@ class DetailSplit extends Component {
this.flowExamineModal.showModal(...ags);
};
getTaskInfos = (res) => {
const queryId = this.props.history.location.query && this.props.history.location.query.id;
const id = this.props.history.location.state && this.props.history.location.state.id;
const code = this.props.history.location.state && this.props.history.location.state.code;
if(queryApiVersion() === '2.0'){
return new Promise((resolve) => {
resolve(res);
});
}
return permRequest('/UnifiedAppFormApi/getTaskInfos', {
// 获取每一步的审核人.
id: queryId ? queryId : id, // 审批表Id
code: code || null, // 表单值
});
};
goPrintDiy = () => {
router.push({
pathname: '/xg/grade/help/PKSRD/DiyPrint',
......@@ -189,11 +205,8 @@ class DetailSplit extends Component {
});
}
if (val) {
permRequest('/UnifiedAppFormApi/getTaskInfos', {
// 获取每一步的审核人.
id: queryId ? queryId : id, // 审批表Id
code: code || null, // 表单值
}).then((res) => {
console.log(val);
this.getTaskInfos(val).then((res) => {
val.taskInfo = res.taskInfo;
this.setState(
{
......
......@@ -86,6 +86,8 @@ export default class ZdyTable extends Component {
}
const val = postData;
// console.log(val);
// debugger;
try {
/**
* 数据源不同进行以下区别处理
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论