|
@@ -315,6 +315,7 @@ export default {
|
|
|
},
|
|
|
// 打开运行节点弹窗
|
|
|
async opneExecuteNode(row) {
|
|
|
+ console.log(row);
|
|
|
this.resetDialogForm();
|
|
|
let preFix = row.benTaskNodeName.split("-")[0];
|
|
|
if (row.benTaskNodeFormKey) {
|
|
@@ -377,8 +378,13 @@ export default {
|
|
|
async getDragFormInfo(fid) {
|
|
|
try {
|
|
|
let res = await getForm(fid);
|
|
|
+ console.log(res);
|
|
|
if (res.code == 200) {
|
|
|
this.jsonData = JSON.parse(res.data.dfVueTemplate);
|
|
|
+ if (res.data.dfFormSql) {
|
|
|
+ this.dynamicData = JSON.parse(res.data.dfFormSql);
|
|
|
+ console.log(this.dynamicData);
|
|
|
+ }
|
|
|
} else {
|
|
|
console.log(res);
|
|
|
this.$message.error("网络异常,请稍后再试");
|