提交 c6c64aaa 编写于 作者: tony001's avatar tony001

zpc --- 完善实体工作流动态编辑视图工具栏点击事件

上级 519decf2
......@@ -42,8 +42,34 @@
* @memberof ${srfclassname('${view.codeName}')}Base
*/
public dynamic_toolbar_click(linkItem:any, $event:any){
console.log(linkItem);
(this.$refs.form as any).save().then((response:any) =>{
let requestData:any = Object.assign(linkItem,{activedata:response.data});
this.appEntityService.WFSubmit(JSON.parse(JSON.stringify(this.context)),JSON.parse(JSON.stringify(requestData)),true,true).then((res:any) =>{
if (response && response.status === 200) {
this.$Notice.success({ title: '成功', desc: linkItem.sequenceFlowName+'操作成功' });
}
}).catch((res: any) => {
if (res && res.status) {
this.$Notice.error({ title: '错误', desc: res.message });
return;
}
if (!res || !res.status || !res.data) {
this.$Notice.error({ title: '错误', desc: '系统异常' });
return;
}
});
}).catch((response: any) => {
if (response && response.status) {
this.$Notice.error({ title: '错误', desc: response.message });
return;
}
if (!response || !response.status || !response.data) {
this.$Notice.error({ title: '错误', desc: '系统异常' });
return;
}
});
}
</#assign>
<#ibizinclude>
../@MACRO/VIEW-BASE.vue.ftl
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册