fmui-base 2.2.43 → 2.2.45

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 CHANGED
@@ -3,6 +3,8 @@
3
3
  ---npm publish
4
4
 
5
5
  ## 更新日志
6
+ - 2.2.45: 北京CA
7
+ - 2.2.44: 多行文本不限制高度
6
8
  - 2.2.43: 抢占环节加签只允许单选
7
9
  - 2.2.42: 上海CA提提示时间设为3秒
8
10
  - 2.2.41: 上海CA提交前开启免密校验
package/lib/form/form.js CHANGED
@@ -3261,6 +3261,7 @@ var PageHome = function (_React$Component) {
3261
3261
  label: t.state.itemParam.title,
3262
3262
  readOnly: t.state.itemParam.readOnly,
3263
3263
  minRows: 1,
3264
+ maxRows: 1000,
3264
3265
  placeholder: t.state.itemParam.readOnly ? '' : t.state.itemParam.placeholder,
3265
3266
  value: t.state.itemParam.value,
3266
3267
  onChange: function onChange(value) {
@@ -3324,6 +3325,7 @@ var PageHome = function (_React$Component) {
3324
3325
  label: t.state.itemParam.title,
3325
3326
  readOnly: t.state.itemParam.readOnly,
3326
3327
  minRows: 1,
3328
+ maxRows: 1000,
3327
3329
  placeholder: t.state.itemParam.readOnly ? '' : t.state.itemParam.placeholder,
3328
3330
  value: t.state.itemParam.value,
3329
3331
  onChange: function onChange(value) {
@@ -3348,6 +3350,7 @@ var PageHome = function (_React$Component) {
3348
3350
  label: t.state.itemParam.title,
3349
3351
  readOnly: t.state.itemParam.readOnly,
3350
3352
  minRows: 1,
3353
+ maxRows: 1000,
3351
3354
  placeholder: t.state.itemParam.readOnly ? '' : t.state.itemParam.placeholder,
3352
3355
  value: t.state.itemParam.value,
3353
3356
  onChange: function onChange(value) {
@@ -3448,6 +3451,7 @@ var PageHome = function (_React$Component) {
3448
3451
  label: t.state.itemParam.title,
3449
3452
  readOnly: t.state.itemParam.readOnly,
3450
3453
  minRows: 1,
3454
+ maxRows: 1000,
3451
3455
  placeholder: t.state.itemParam.readOnly ? '' : t.state.itemParam.placeholder,
3452
3456
  value: t.state.itemParam.value
3453
3457
  }) : t.state.itemParam.dateFormat == "DateInterval" ? _react2.default.createElement(_CalendarField2.default, {
@@ -1219,7 +1219,7 @@ var PageHome = function (_React$Component) {
1219
1219
  var oauthWindowURL = "";
1220
1220
  if (content.oauthWindowURL && content.oauthWindowURL != null && content.oauthWindowURL != 'null' && typeof content.oauthWindowURL != 'undefined' && content.oauthWindowURL != '') {
1221
1221
  oauthWindowURL = content.oauthWindowURL;
1222
- t.openCaPage(oauthWindowURL);
1222
+ t.openCaPage(oauthWindowURL, content.caFirm);
1223
1223
  }
1224
1224
  var isCaUser = "0";
1225
1225
  if (content.isCaUser && content.isCaUser != null && content.isCaUser != 'null' && typeof content.isCaUser != 'undefined' && content.isCaUser != '') {
@@ -7629,12 +7629,12 @@ var PageHome = function (_React$Component) {
7629
7629
 
7630
7630
  }, {
7631
7631
  key: 'openCaPage',
7632
- value: function openCaPage(oauthWindowURL) {
7632
+ value: function openCaPage(oauthWindowURL, caFirm) {
7633
7633
  setTimeout(function () {
7634
7634
  console.log('oauthWindowURL', oauthWindowURL);
7635
- if (oauthWindowURL && oauthWindowURL != null && oauthWindowURL != 'null' && typeof oauthWindowURL != 'undefined' && oauthWindowURL != '') {
7635
+ if (oauthWindowURL && oauthWindowURL != null && oauthWindowURL != 'null' && typeof oauthWindowURL != 'undefined' && oauthWindowURL != '' && caFirm && caFirm != null && caFirm != 'null' && typeof caFirm != 'undefined' && caFirm != '') {
7636
7636
  localStorage.setItem('oauthWindowURL', oauthWindowURL);
7637
- localStorage.setItem('caFirm', this.state.caFirm);
7637
+ localStorage.setItem('caFirm', caFirm);
7638
7638
  // console.log(getLoginUserInfo().contextPageUrl+'/mobile/shenzhengCA.html');
7639
7639
  // window.open(getLoginUserInfo().contextPageUrl+'/mobile/shenzhengCA.html');
7640
7640
  location.href = getLoginUserInfo().contextPageUrl + '/mobile/shenzhengCA.html';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmui-base",
3
- "version": "2.2.43",
3
+ "version": "2.2.45",
4
4
  "title": "fmui-base",
5
5
  "description": "fmui移动端组件",
6
6
  "main": "lib/index.js",