@lambo-design/workflow-approve 1.0.0-beta.25 → 1.0.0-beta.26
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": "@lambo-design/workflow-approve",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.26",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "lambo",
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"axios": "^0.24.0",
|
|
14
14
|
"axios-cache-plugin": "^0.1.0",
|
|
15
|
-
"@lambo-design/
|
|
16
|
-
"@lambo-design/
|
|
15
|
+
"@lambo-design/shared": "^1.0.0-beta.210",
|
|
16
|
+
"@lambo-design/core": "^4.7.1-beta.141"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"bpmn-js": "^7.3.1",
|
|
@@ -1930,7 +1930,7 @@ export default {
|
|
|
1930
1930
|
}
|
|
1931
1931
|
if (this.permScope == 'all'){
|
|
1932
1932
|
this.getRootOrganTree(organTreeType)
|
|
1933
|
-
this.getReadingRangeOrgType(permScope, organTreeType)
|
|
1933
|
+
this.ucAdapterType === 'sc' ? this.getReadingRangeOrgType(permScope, organTreeType) : ''
|
|
1934
1934
|
} else {
|
|
1935
1935
|
this.getReadingRangeBM(this.permScope, inputValue, this.organTreeType)
|
|
1936
1936
|
this.getReadingRange(this.permScope, this.organTreeType)
|
package/src/portrait.vue
CHANGED
|
@@ -448,6 +448,7 @@ export default {
|
|
|
448
448
|
handleName: '',
|
|
449
449
|
auditOpinionTitle: '',
|
|
450
450
|
auditResult: '',
|
|
451
|
+
auditGroup: '',
|
|
451
452
|
custChange: 'auditInfo',
|
|
452
453
|
auditInfo: "auditInfo",
|
|
453
454
|
auditProcess: "auditProcess",
|
|
@@ -752,6 +753,7 @@ export default {
|
|
|
752
753
|
.then(resp => {
|
|
753
754
|
let data = resp.data.data.rows
|
|
754
755
|
self.permScope = data[0].permScope
|
|
756
|
+
self.auditGroup = data[0].auditGroup
|
|
755
757
|
self.defaultOrganTreeType = data[0].organTreeType ? data[0].organTreeType : '00'
|
|
756
758
|
self.getNodeOrganTreeType(procType)
|
|
757
759
|
}).catch(err => {
|
|
@@ -791,6 +793,7 @@ export default {
|
|
|
791
793
|
ajax.get(self.smartFlowServerContext + "/manage/processDone/getDoneDetail", {params: param}).then(function (resp) {
|
|
792
794
|
if (resp.data.code === '200') {
|
|
793
795
|
let rows = resp.data.data.rows
|
|
796
|
+
self.auditGroup = rows[0].auditGroup
|
|
794
797
|
if (rows.length > 0) {
|
|
795
798
|
self.hisAuditOpinion = []
|
|
796
799
|
let taskList = resp.data.data.rows
|