mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
update
This commit is contained in:
@@ -1 +1 @@
|
||||
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=Cache-Control content="no-cache, no-store, must-revalidate"><meta http-equiv=X-UA-Compatible content="IE=edge,chrome=1"><link rel=icon href=/vxe-table/favicon.ico><title>vxe-table 表格</title><link href=/vxe-table/static/css/chunk-vendors.73f3d338.css rel=preload as=style><link href=/vxe-table/static/css/index.acd44b99.css rel=preload as=style><link href=/vxe-table/static/js/chunk-vendors.9d232144.js rel=preload as=script><link href=/vxe-table/static/js/index.c2246ca2.js rel=preload as=script><link href=/vxe-table/static/css/chunk-vendors.73f3d338.css rel=stylesheet><link href=/vxe-table/static/css/index.acd44b99.css rel=stylesheet></head><body><noscript><strong>We're sorry but vxe-table doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=/vxe-table/static/js/chunk-vendors.9d232144.js></script><script src=/vxe-table/static/js/index.c2246ca2.js></script></body></html>
|
||||
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=Cache-Control content="no-cache, no-store, must-revalidate"><meta http-equiv=X-UA-Compatible content="IE=edge,chrome=1"><link rel=icon href=/vxe-table/favicon.ico><title>vxe-table 表格</title><link href=/vxe-table/static/css/chunk-vendors.73f3d338.css rel=preload as=style><link href=/vxe-table/static/css/index.acd44b99.css rel=preload as=style><link href=/vxe-table/static/js/chunk-vendors.9d232144.js rel=preload as=script><link href=/vxe-table/static/js/index.5bf8ab17.js rel=preload as=script><link href=/vxe-table/static/css/chunk-vendors.73f3d338.css rel=stylesheet><link href=/vxe-table/static/css/index.acd44b99.css rel=stylesheet></head><body><noscript><strong>We're sorry but vxe-table doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=/vxe-table/static/js/chunk-vendors.9d232144.js></script><script src=/vxe-table/static/js/index.5bf8ab17.js></script></body></html>
|
||||
File diff suppressed because one or more lines are too long
@@ -9195,10 +9195,11 @@ function renderFixed(h, $table, fixedType) {
|
||||
}
|
||||
},
|
||||
// 处理方向键移动
|
||||
moveSelected: function moveSelected(params, isLeftArrow, isUpArrow, isRightArrow, isDwArrow, evnt) {
|
||||
moveSelected: function moveSelected(args, isLeftArrow, isUpArrow, isRightArrow, isDwArrow, evnt) {
|
||||
var tableData = this.tableData,
|
||||
visibleColumn = this.visibleColumn,
|
||||
handleSelected = this.handleSelected;
|
||||
var params = Object.assign({}, args);
|
||||
|
||||
if (isUpArrow && params.rowIndex) {
|
||||
params.rowIndex -= 1;
|
||||
|
||||
@@ -9204,10 +9204,11 @@ function renderFixed(h, $table, fixedType) {
|
||||
}
|
||||
},
|
||||
// 处理方向键移动
|
||||
moveSelected: function moveSelected(params, isLeftArrow, isUpArrow, isRightArrow, isDwArrow, evnt) {
|
||||
moveSelected: function moveSelected(args, isLeftArrow, isUpArrow, isRightArrow, isDwArrow, evnt) {
|
||||
var tableData = this.tableData,
|
||||
visibleColumn = this.visibleColumn,
|
||||
handleSelected = this.handleSelected;
|
||||
var params = Object.assign({}, args);
|
||||
|
||||
if (isUpArrow && params.rowIndex) {
|
||||
params.rowIndex -= 1;
|
||||
|
||||
2
lib/index.umd.min.js
vendored
2
lib/index.umd.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -1489,8 +1489,9 @@ export default {
|
||||
}
|
||||
},
|
||||
// 处理方向键移动
|
||||
moveSelected (params, isLeftArrow, isUpArrow, isRightArrow, isDwArrow, evnt) {
|
||||
moveSelected (args, isLeftArrow, isUpArrow, isRightArrow, isDwArrow, evnt) {
|
||||
let { tableData, visibleColumn, handleSelected } = this
|
||||
let params = Object.assign({}, args)
|
||||
if (isUpArrow && params.rowIndex) {
|
||||
params.rowIndex -= 1
|
||||
params.row = tableData[params.rowIndex]
|
||||
|
||||
Reference in New Issue
Block a user