eoss-mobiles 0.2.55 → 0.2.56

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-mobiles",
3
- "version": "0.2.55",
3
+ "version": "0.2.56",
4
4
  "description": "eoss内部移动端业务组件",
5
5
  "main": "lib/eoss-mobile.common.js",
6
6
  "files": [
@@ -10,6 +10,7 @@
10
10
  :ownId="$route.query.pendingId"
11
11
  :esign="esign"
12
12
  @onInputOpintion="onInputOpintion"
13
+ :placeholder="opinionHandleExplainText"
13
14
  :isOpinionRequired="isBanInputOpinion"
14
15
  :disabled="isBanInputOpinion != 0"
15
16
  :baseUrl="baseUrl"
@@ -66,6 +67,7 @@ export default {
66
67
  data() {
67
68
  return {
68
69
  showMsg: false, // 判断是否显示系统消息
70
+ opinionHandleExplainText:undefined,
69
71
  showOpinion: false, // 常用意见弹框
70
72
  form: {
71
73
  opinion: undefined, // 审批意见
@@ -212,6 +214,7 @@ export default {
212
214
  this.nodeDefaultRejectOpinion =
213
215
  nodeInfoMap.nodeExtAttr.nodeDefaultRejectOpinion;
214
216
  this.isBanInputOpinion = nodeInfoMap.nodeExtAttr.isBanInputOpinion;
217
+ this.opinionHandleExplainText = nodeInfoMap.nodeExtAttr.opinionHandleExplainText;
215
218
  if (!this.isBanInputOpinion) {
216
219
  this.isBanInputOpinion = 0;
217
220
  }
package/src/index.js CHANGED
@@ -105,7 +105,7 @@ if (typeof window !== 'undefined' && window.Vue) {
105
105
  }
106
106
 
107
107
  export default {
108
- version: '0.2.55',
108
+ version: '0.2.56',
109
109
  install,
110
110
  Button,
111
111
  ButtonGroup,