fmui-base 2.1.78 → 2.1.79
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/process_info/processInfo.js +16 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -444,6 +444,8 @@ var PageHome = function (_React$Component) {
|
|
|
444
444
|
mobileFlowChar: '0', //是否开启流程图 1开启 0禁用
|
|
445
445
|
readScopeId: '',
|
|
446
446
|
readScopeList: [],
|
|
447
|
+
readRangeType: '', //传阅范围 0全部 2本组织及下属组织 4自定义
|
|
448
|
+
readRangeList: '', //传阅范围为自定义时的limitData
|
|
447
449
|
isRemoveCommentFormHtml: '0', //是否隐藏无数据的批示意见 1隐藏
|
|
448
450
|
allActivity: [], //所有环节名称
|
|
449
451
|
designActivity: '', //选择的提醒环节id
|
|
@@ -794,6 +796,8 @@ var PageHome = function (_React$Component) {
|
|
|
794
796
|
var form = content.form;
|
|
795
797
|
var readScopeId = '';
|
|
796
798
|
var readScopeList = [];
|
|
799
|
+
var readRangeType = '';
|
|
800
|
+
var readRangeList = '';
|
|
797
801
|
var isRemoveCommentFormHtml = '0';
|
|
798
802
|
var subProcessCode = '';
|
|
799
803
|
var dataInherit = '';
|
|
@@ -807,6 +811,12 @@ var PageHome = function (_React$Component) {
|
|
|
807
811
|
if (content.readScopeList && typeof content.readScopeList != "undefined") {
|
|
808
812
|
readScopeList = content.readScopeList;
|
|
809
813
|
}
|
|
814
|
+
if (content.readRangeType && typeof content.readRangeType != "undefined") {
|
|
815
|
+
readRangeType = content.readRangeType;
|
|
816
|
+
}
|
|
817
|
+
if (content.readRangeList && typeof content.readRangeList != "undefined") {
|
|
818
|
+
readRangeList = content.readRangeList;
|
|
819
|
+
}
|
|
810
820
|
var commentUpload = '';
|
|
811
821
|
if (content.commentUpload && typeof content.commentUpload != "undefined") {
|
|
812
822
|
commentUpload = content.commentUpload;
|
|
@@ -1382,6 +1392,8 @@ var PageHome = function (_React$Component) {
|
|
|
1382
1392
|
mobileFlowChar: mobileFlowChar,
|
|
1383
1393
|
readScopeId: readScopeId,
|
|
1384
1394
|
readScopeList: readScopeList,
|
|
1395
|
+
readRangeType: readRangeType,
|
|
1396
|
+
readRangeList: readRangeList,
|
|
1385
1397
|
isRemoveCommentFormHtml: isRemoveCommentFormHtml,
|
|
1386
1398
|
commentUpload: commentUpload,
|
|
1387
1399
|
subProcessCode: subProcessCode,
|
|
@@ -7724,6 +7736,8 @@ var PageHome = function (_React$Component) {
|
|
|
7724
7736
|
chooseType: 'userAndOrg,userAndGroup,userAndDuty,userNotPoliticalOutlook,userAndStation,userAndPersonGroup',
|
|
7725
7737
|
checkType: 'checkbox',
|
|
7726
7738
|
defaultValue: this.state.readScopeList,
|
|
7739
|
+
limitData: this.state.readRangeList,
|
|
7740
|
+
queryLimit: this.state.readRangeList && this.state.readRangeList != '' ? '5' : '',
|
|
7727
7741
|
ref: "selectMember_circulate1",
|
|
7728
7742
|
isDelete: true,
|
|
7729
7743
|
onChange: this.getCirculatePerson.bind(this)
|
|
@@ -7952,6 +7966,8 @@ var PageHome = function (_React$Component) {
|
|
|
7952
7966
|
chooseType: 'userAndOrg,userAndGroup,userAndDuty,userNotPoliticalOutlook,userAndStation,userAndPersonGroup',
|
|
7953
7967
|
checkType: 'checkbox',
|
|
7954
7968
|
defaultValue: this.state.readScopeList,
|
|
7969
|
+
limitData: this.state.readRangeList,
|
|
7970
|
+
queryLimit: this.state.readRangeList && this.state.readRangeList != '' ? '5' : '',
|
|
7955
7971
|
ref: "selectMember_circulate",
|
|
7956
7972
|
isDelete: true,
|
|
7957
7973
|
onChange: this.circulateCallback.bind(this)
|