eoss-mobiles 0.3.30 → 0.3.32
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 +18 -10
- package/lib/flow.js +17 -9
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/components/TaskRead.vue +11 -2
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -107,6 +107,7 @@ import {
|
|
|
107
107
|
taskTransfer,
|
|
108
108
|
getNotificationMsg,
|
|
109
109
|
findSysCodes,
|
|
110
|
+
findUserBaseInfo,
|
|
110
111
|
handleTaskRead
|
|
111
112
|
} from '../../../../src/config/api';
|
|
112
113
|
import util from '../../../../src/utils/util.js';
|
|
@@ -176,7 +177,7 @@ export default {
|
|
|
176
177
|
return {
|
|
177
178
|
pid:
|
|
178
179
|
this.taskReadType == '分阅'
|
|
179
|
-
? ''
|
|
180
|
+
? 'root'
|
|
180
181
|
: util.getStorage('orgId') || this.orgId
|
|
181
182
|
};
|
|
182
183
|
},
|
|
@@ -196,7 +197,9 @@ export default {
|
|
|
196
197
|
// this.getProcessObjNew();
|
|
197
198
|
// }
|
|
198
199
|
this.getFind();
|
|
199
|
-
|
|
200
|
+
request({url:findUserBaseInfo}).then(res => {
|
|
201
|
+
conosle.log(res)
|
|
202
|
+
})
|
|
200
203
|
if (!this.readParams) {
|
|
201
204
|
this.getHandleInfoHtml();
|
|
202
205
|
} else {
|
|
@@ -420,6 +423,12 @@ export default {
|
|
|
420
423
|
} else if (this.selectPersonValue == 6) {
|
|
421
424
|
this.multiple = true;
|
|
422
425
|
this.params.pid = 'root';
|
|
426
|
+
}else if(this.selectPersonValue == 7){
|
|
427
|
+
this.multiple = false
|
|
428
|
+
this.params.pid = orgId
|
|
429
|
+
}else if(this.selectPersonValue == 8){
|
|
430
|
+
this.multiple = true
|
|
431
|
+
this.params.pid = orgId
|
|
423
432
|
}else{
|
|
424
433
|
this.params.pid = 'root';
|
|
425
434
|
}
|