bri-components 1.2.78 → 1.2.80

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.78",
3
+ "version": "1.2.80",
4
4
  "author": "dengshanghui",
5
5
  "description": "a component lib for vue project",
6
6
  "main": "src/index.js",
@@ -27,7 +27,7 @@
27
27
  <div
28
28
  :class="{
29
29
  'row-item': true,
30
- 'row-item-logo': true,
30
+ 'row-item-logo': subMode,
31
31
  }"
32
32
  @click="clickRow(row)"
33
33
  >
@@ -234,7 +234,7 @@
234
234
  selfColumns () {
235
235
  return this.columns
236
236
  .filter(colItem => ![this.imageField, this.titleField].includes(colItem._key))
237
- .slice(0, this.subMode === "logo" ? 4 : 2);
237
+ .slice(0, this.subMode === "logo" ? 5 : 2);
238
238
  },
239
239
 
240
240
  selectIds: {