|
@@ -366,6 +366,16 @@ export default {
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
computed: {},
|
|
computed: {},
|
|
|
|
|
+ watch:{
|
|
|
|
|
+ 'selectedWorkflow.window': {
|
|
|
|
|
+ handler(newValue,oldVal) {
|
|
|
|
|
+ if(newValue != oldVal && newValue){
|
|
|
|
|
+ this.selectedWorkflow.name = newValue.value;
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ deep: true,
|
|
|
|
|
+ },
|
|
|
|
|
+ },
|
|
|
|
|
|
|
|
mounted: function () {
|
|
mounted: function () {
|
|
|
this.queryBpmn();
|
|
this.queryBpmn();
|
|
@@ -375,7 +385,6 @@ export default {
|
|
|
this.loadClients();
|
|
this.loadClients();
|
|
|
this.loadProcessReports();
|
|
this.loadProcessReports();
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
methods: {
|
|
methods: {
|
|
|
rowSelection: function () {
|
|
rowSelection: function () {
|
|
|
const onChange = (selectedRowKeys, selectedRows) => {
|
|
const onChange = (selectedRowKeys, selectedRows) => {
|