eoss-ui 0.8.32 → 0.8.33
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
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
:params="currentOrgSelectorParams"
|
|
20
20
|
/>
|
|
21
21
|
</el-form-item>
|
|
22
|
+
|
|
22
23
|
<el-form-item v-if="showOther" prop="nextOtherOrgObj" label="外单位">
|
|
23
24
|
<SelectUser
|
|
24
25
|
:nextUser="nextOtherOrgObjSelect"
|
|
@@ -33,6 +34,15 @@
|
|
|
33
34
|
:params="foreignOrgSelectorParams"
|
|
34
35
|
/>
|
|
35
36
|
</el-form-item>
|
|
37
|
+
<el-form-item prop="opinion" label="传阅意见">
|
|
38
|
+
<el-input
|
|
39
|
+
v-model="opinion"
|
|
40
|
+
type="textarea"
|
|
41
|
+
clear="inp"
|
|
42
|
+
:placeholder="'请输入传阅意见'"
|
|
43
|
+
:rows="rows"
|
|
44
|
+
></el-input>
|
|
45
|
+
</el-form-item>
|
|
36
46
|
</el-form>
|
|
37
47
|
<div style="text-align: right">
|
|
38
48
|
<el-button type="primary" @click="subMit"> 确定 </el-button>
|
|
@@ -65,6 +75,10 @@ export default {
|
|
|
65
75
|
type: String,
|
|
66
76
|
default: ''
|
|
67
77
|
},
|
|
78
|
+
rows: {
|
|
79
|
+
type: [Number, String],
|
|
80
|
+
default: 6
|
|
81
|
+
},
|
|
68
82
|
showOther: { type: Boolean, default: true }
|
|
69
83
|
},
|
|
70
84
|
data() {
|
|
@@ -72,6 +86,7 @@ export default {
|
|
|
72
86
|
currentOrgDisabledObjId: [],
|
|
73
87
|
otherOrgDisabledObjId: [],
|
|
74
88
|
nextCurrentOrgObjSelect: [],
|
|
89
|
+
opinion:'',
|
|
75
90
|
currentNodeIsCircularReadNode: false,
|
|
76
91
|
simpleTips: true,
|
|
77
92
|
subProcessColumns: [],
|
|
@@ -106,6 +121,7 @@ export default {
|
|
|
106
121
|
...this.params,
|
|
107
122
|
appId: this.appId || this.params.appId,
|
|
108
123
|
nextCurrentOrgObj: this.nextNode.nextCurrentOrgObj,
|
|
124
|
+
opinion:this.opinion,
|
|
109
125
|
nextOtherOrgObj: this.nextNode.nextOtherOrgObj || ''
|
|
110
126
|
},
|
|
111
127
|
method: 'post'
|
|
@@ -285,6 +285,9 @@ export default {
|
|
|
285
285
|
this.loading = true;
|
|
286
286
|
this.newMultiple = this.multiple;
|
|
287
287
|
this.otherParams.roleid = this.params.roleid = this.selectorParams.roleid;
|
|
288
|
+
if(this.type == 'startDraf'){
|
|
289
|
+
this.otherParams.nofilid = sessionStorage.getItem('orgId')
|
|
290
|
+
}
|
|
288
291
|
this.opinion = this.oldOption;
|
|
289
292
|
this.getNodeType();
|
|
290
293
|
if (this.type === 'taskReview') return this.getTaskReview();
|