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/lib/eoss-mobile.common.js +12 -8
- package/lib/flow.js +11 -7
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/components/Reject.vue +3 -0
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -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
|
}
|