bri-components 1.2.32 → 1.2.33

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bri-components",
3
- "version": "1.2.32",
3
+ "version": "1.2.33",
4
4
  "author": "dengshanghui",
5
5
  "description": "a component lib for vue project",
6
6
  "main": "src/index.js",
@@ -34,6 +34,7 @@
34
34
  "ali-oss": "^6.13.1",
35
35
  "bri-datas": "1.0.14",
36
36
  "jshint": "^2.12.0",
37
+ "jsonlint": "^1.6.3",
37
38
  "minio": "^7.0.26",
38
39
  "stream": "^0.0.2",
39
40
  "view-design": "^4.6.0",
@@ -170,10 +170,9 @@
170
170
  },
171
171
  computed: {
172
172
  displayFormList () {
173
- return this.formList.filter(formItem =>
174
- this.isShow(formItem, this.formData) &&
175
- !(this.notShowEmpty && !this.canEdit && this.$isEmptyData(this.formData[formItem._key]))
176
- );
173
+ const formList = this.formList.filter(formItem => this.isShow(formItem, this.formData));
174
+ return formList;
175
+ // return this.$getNotEmptyFieldList(formList, this.formData, this.canEdit, this.notShowEmpty);
177
176
  }
178
177
  },
179
178
  created () {