|
|
@@ -471,7 +471,12 @@ export default {
|
|
|
var _self = this;
|
|
|
|
|
|
// 查询流程和报表的定义
|
|
|
- ProcessReportResource.uniqueByNo(calloutProcessReportNo).then(successData => {
|
|
|
+ ProcessReportResource.uniqueByNo(calloutProcessReportNo).then(response => {
|
|
|
+ if (response.errorCode != 0) {
|
|
|
+ Notify.error('流程和报表获取错误', response.errorMessage, true);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ const successData = response.data;
|
|
|
if (successData == null) {
|
|
|
return;
|
|
|
}
|