eoss-ui 0.7.49 → 0.7.50
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/lib/eoss-ui.common.js +10 -10
- package/lib/flow.js +4 -4
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/main.vue +2 -2
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -2366,7 +2366,7 @@ export default {
|
|
|
2366
2366
|
// 直接办结:endFlowHtml
|
|
2367
2367
|
// 自由发起子流程:toFreeStartFlow
|
|
2368
2368
|
if(res.type == 4){
|
|
2369
|
-
this.$emit('buttonClick',res.fun,this.sendData);
|
|
2369
|
+
this.$emit('buttonClick',{fun:res.fun,opinion:this.value},this.sendData);
|
|
2370
2370
|
}else if (res.fun === 'toStartTaskRead()') {
|
|
2371
2371
|
// 分阅
|
|
2372
2372
|
this.taskReadBtn();
|
|
@@ -3523,7 +3523,7 @@ export default {
|
|
|
3523
3523
|
let btnInfo = this.taskNodeButtons.filter(x => x.key === this.submitButtonFunKey)
|
|
3524
3524
|
if(btnInfo.length>0){
|
|
3525
3525
|
if(btnInfo[0].type == 4){
|
|
3526
|
-
this.$emit('buttonClick',btnInfo[0].fun,this.sendData);
|
|
3526
|
+
this.$emit('buttonClick',{fun:btnInfo[0].fun,opinion:this.value},this.sendData);
|
|
3527
3527
|
|
|
3528
3528
|
}else if(btnInfo[0].type == 2){
|
|
3529
3529
|
this.goView(btnInfo[0])
|