sasp-flow-render 1.0.15 → 1.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sasp-flow-render",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "业务应用支撑平台-智慧流程渲染组件",
5
5
  "scripts": {
6
6
  "build": "vue-cli-service build"
@@ -732,7 +732,8 @@
732
732
  flowInstIds += "," + row.id;
733
733
  });
734
734
  this.axios.post(this.api.plFlowInst.deleteFlowInst, {
735
- flowInstIds: flowInstIds.substring(1)
735
+ flowInstIds: flowInstIds.substring(1),
736
+ flowId: this.flowDefine.id,
736
737
  }).then(res => {
737
738
  if (res && res.data && res.data.operateSuccess) {
738
739
  this.$message({type: "success", message: "删除成功!"});