fmui-base 2.1.42 → 2.1.43
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/README.md +1 -0
- package/lib/selectMember/select.js +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -326,12 +326,13 @@ var Page = function (_React$Component) {
|
|
|
326
326
|
}, {
|
|
327
327
|
key: 'checkHasEtraTab',
|
|
328
328
|
value: function checkHasEtraTab(codes) {
|
|
329
|
+
var flag = false;
|
|
329
330
|
codes && codes.split(",").forEach(function (item) {
|
|
330
331
|
if (item == "" || item == "org" || item == "user" || item == "group" || item == "role" || item == "station" || item == "duty" || item == "personGroup" || item == "politicalOutlook") {} else {
|
|
331
|
-
|
|
332
|
+
flag = true;
|
|
332
333
|
}
|
|
333
334
|
});
|
|
334
|
-
return
|
|
335
|
+
return flag;
|
|
335
336
|
}
|
|
336
337
|
|
|
337
338
|
//处理popcode
|