fmui-base 2.2.45 → 2.2.47
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 +2 -0
- package/lib/process_info/processInfo.js +1 -0
- package/lib/selectMember/select.js +13 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -318,6 +318,19 @@ var Page = function (_React$Component) {
|
|
|
318
318
|
_db2.default.FlowModuleAPI.getSysSettingByMark({ mark: 'selUserIsDJ' }).then(function (content) {
|
|
319
319
|
if (content && content == '1') {
|
|
320
320
|
_this.state.isShowSelectCpc = true;
|
|
321
|
+
_db2.default.FlowModuleAPI.getSysSettingByMark({ mark: 'isDefaultdy' }).then(function (content2) {
|
|
322
|
+
//非党员
|
|
323
|
+
console.log("isDefaultdy", content2);
|
|
324
|
+
if (content2 && content2 == '1') {
|
|
325
|
+
_this.state.curSelectCpc = '0';
|
|
326
|
+
_this.state.selectCpcOptions = [{ value: "1", checked: false, content: '党员', disable: false }, { value: "0", checked: true, content: '非党员', disable: false }];
|
|
327
|
+
} else if (content2 == '2') {
|
|
328
|
+
_this.state.curSelectCpc = '';
|
|
329
|
+
his.state.curSelectCpc = [{ value: "1", checked: true, content: '党员', disable: false }, { value: "0", checked: true, content: '非党员', disable: false }];
|
|
330
|
+
}
|
|
331
|
+
}).catch(function (error) {
|
|
332
|
+
console.error(error);
|
|
333
|
+
});
|
|
321
334
|
}
|
|
322
335
|
}).catch(function (error) {
|
|
323
336
|
console.error(error);
|