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

zpc --- 修复批添加功能

上级 e3b2e942
......@@ -52,19 +52,21 @@
if(result.datas && result.datas.length == 0){
return;
}
let requestParam:Array<any> = [];
result.datas.forEach((record:any) => {
record[this.appEntityService.APPDEKEY] = this.context['srfparentkey'];
requestParam.push(record);
});
this.appEntityService.createBatch(JSON.parse(JSON.stringify(this.context)),requestParam,true).then((response:any) =>{
if (!response || response.status !== 200) {
this.$Notice.error({ title: '错误', desc: '批处理操作失败' });
return;
}
if (!xData || !(xData.refresh instanceof Function)) {
return;
}
xData.refresh(result.datas);
});
// this.$http.post(url,viewParam).then((response:any) =>{
// if (!response || response.status !== 200) {
// this.$Notice.error({ title: '错误', desc: '批处理操作失败' });
// return;
// }
// if (!xData || !(xData.refresh instanceof Function)) {
// return;
// }
// xData.refresh(result.datas);
// })
});
<#elseif viewlogic.isBatchAddOnly()>
this.$Notice.warning({ title: '错误', desc: '只支持批添加未实现' });
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册