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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eoss-ui",
3
- "version": "0.7.49",
3
+ "version": "0.7.50",
4
4
  "description": "eoss内部业务组件",
5
5
  "main": "lib/eoss-ui.common.js",
6
6
  "files": [
@@ -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])
package/src/index.js CHANGED
@@ -125,7 +125,7 @@ if (typeof window !== 'undefined' && window.Vue) {
125
125
  }
126
126
 
127
127
  export default {
128
- version: '0.7.49',
128
+ version: '0.7.50',
129
129
  install,
130
130
  Button,
131
131
  ButtonGroup,