bri-components 1.4.8 → 1.4.9

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.4.8",
3
+ "version": "1.4.9",
4
4
  "author": "dengshanghui",
5
5
  "description": "a component lib for vue project",
6
6
  "main": "src/index.js",
@@ -175,7 +175,7 @@ export default {
175
175
  // nextRowIndex为-1,代表最后一行
176
176
  row = nextRowIndex < 0
177
177
  ? newList[newList.length - 1]
178
- : newList[nextRowIndex];
178
+ : newList[nextRowIndex - 1];
179
179
  rowIndex = list.findIndex(dataItem => dataItem._id === row._id);
180
180
  }
181
181