@lambo-design/workflow-approve 1.0.0-beta.23 → 1.0.0-beta.24
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
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<CheckboxGroup v-model="treeUserValue" class="checkbox-container" @on-change="getReadingRangeUser">
|
|
96
96
|
<Checkbox v-for="(item) in treeUserCenterValue" :key="item.userId"
|
|
97
97
|
:label="item.userId+','+item.userName">
|
|
98
|
-
{{ item.userName }}
|
|
98
|
+
{{ item.userName }} {{ showUserDetail(item) }}
|
|
99
99
|
</Checkbox>
|
|
100
100
|
</CheckboxGroup>
|
|
101
101
|
<CheckboxGroup v-model="treeUserValue" class="checkbox-container" @on-change="getReadingRangeUser">
|
|
@@ -1372,7 +1372,9 @@ export default {
|
|
|
1372
1372
|
ajax.get(self.upmsServerContext + "/manage/user/getList", {
|
|
1373
1373
|
params: {
|
|
1374
1374
|
organId: itemCom.id,
|
|
1375
|
-
|
|
1375
|
+
orgTreeType: self.organTreeType,
|
|
1376
|
+
limit: "1000",
|
|
1377
|
+
directChild: true,
|
|
1376
1378
|
}
|
|
1377
1379
|
}).then(function (resp) {
|
|
1378
1380
|
if (resp.data.message == "成功") {
|
|
@@ -1400,7 +1402,9 @@ export default {
|
|
|
1400
1402
|
ajax.get(self.upmsServerContext + "/manage/user/getList", {
|
|
1401
1403
|
params: {
|
|
1402
1404
|
organId: itemCom.id,
|
|
1403
|
-
|
|
1405
|
+
orgTreeType: self.organTreeType,
|
|
1406
|
+
limit: "1000",
|
|
1407
|
+
directChild: true,
|
|
1404
1408
|
}
|
|
1405
1409
|
}).then(function (resp) {
|
|
1406
1410
|
if (resp.data.message == "成功") {
|
|
@@ -2005,6 +2009,11 @@ export default {
|
|
|
2005
2009
|
indexToString(index) {
|
|
2006
2010
|
return index + ''
|
|
2007
2011
|
},
|
|
2012
|
+
showUserDetail(item){
|
|
2013
|
+
if (item.nameItem && item.organName){
|
|
2014
|
+
return `( ${item.nameItem} , ${item.organName} )`
|
|
2015
|
+
}
|
|
2016
|
+
}
|
|
2008
2017
|
},
|
|
2009
2018
|
};
|
|
2010
2019
|
</script>
|