fmui-base 2.1.73 → 2.1.74

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,7 @@
3
3
  ---npm publish
4
4
 
5
5
  ## 更新日志
6
+ - 2.1.74:新建默认赋值
6
7
  - 2.1.73:宏值增加赋值属性
7
8
  - 2.1.72:弹出选择框搜索高度
8
9
  - 2.1.71:传阅支持选择到组织、职务、群组
package/lib/form/form.js CHANGED
@@ -327,16 +327,17 @@ var PageHome = function (_React$Component) {
327
327
  var subTbl = data.subTbl; //子表
328
328
  var readOnly = false;
329
329
  var value = '';
330
+ var fuzhiFields = '';
330
331
  console.log("loadComponet===");
331
332
  if (key != "") {
332
333
  //判断字段属性
333
334
  var fieldControllJson = this.props.fieldControll;
334
335
  var fieldControll = this.fieldControllFormat(tableName + "_" + key, fieldControllJson);
335
- var _fuzhiFields = '';
336
+
336
337
  if (fieldControllJson && fieldControllJson.fuzhiFields) {
337
- _fuzhiFields = fieldControllJson.fuzhiFields;
338
+ fuzhiFields = fieldControllJson.fuzhiFields;
338
339
  }
339
- console.log("fuzhiFields====" + _fuzhiFields);
340
+ console.log("fuzhiFields====" + fuzhiFields);
340
341
  if (fieldControll) {
341
342
  if (fieldControll == 'hidden') {
342
343
  //隐藏
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmui-base",
3
- "version": "2.1.73",
3
+ "version": "2.1.74",
4
4
  "title": "fmui-base",
5
5
  "description": "fmui移动端组件",
6
6
  "main": "lib/index.js",