Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
najiu-admin-template
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
najiu-frontend
najiu-admin-template
Commits
8eaf5756
Commit
8eaf5756
authored
May 26, 2021
by
无木
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(table): editable component text align
使可编辑单元格显示的input中的文字对齐方式与列自身的align属性相匹配
parent
d018363d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
19 deletions
+41
-19
EditableCell.vue
...components/Table/src/components/editable/EditableCell.vue
+31
-0
EditRowTable.vue
src/views/demo/table/EditRowTable.vue
+10
-19
No files found.
src/components/Table/src/components/editable/EditableCell.vue
View file @
8eaf5756
...
...
@@ -13,6 +13,7 @@
:popoverVisible=
"getRuleVisible"
:rule=
"getRule"
:ruleMessage=
"ruleMessage"
:class=
"getWrapperClass"
size=
"small"
ref=
"elRef"
@
change=
"handleChange"
...
...
@@ -140,6 +141,11 @@
};
});
const
getWrapperClass
=
computed
(()
=>
{
const
{
align
=
'
center
'
}
=
props
.
column
;
return
`edit-cell-align-
${
align
}
`
;
});
const
getRowEditable
=
computed
(()
=>
{
const
{
editable
}
=
props
.
record
||
{};
return
!!
editable
;
...
...
@@ -315,6 +321,7 @@
getComponentProps
,
handleOptionsChange
,
getWrapperStyle
,
getWrapperClass
,
getRowEditable
,
getValues
,
handleEnter
,
...
...
@@ -326,6 +333,30 @@
<
style
lang=
"less"
>
@prefix-cls: ~'@{namespace}-editable-cell';
.edit-cell-align-left {
text-align: left;
input:not(.ant-calendar-picker-input, .ant-time-picker-input) {
text-align: left;
}
}
.edit-cell-align-center {
text-align: center;
input:not(.ant-calendar-picker-input, .ant-time-picker-input) {
text-align: center;
}
}
.edit-cell-align-right {
text-align: right;
input:not(.ant-calendar-picker-input, .ant-time-picker-input) {
text-align: right;
}
}
.edit-cell-rule-popover {
.ant-popover-inner-content {
padding: 4px 8px;
...
...
src/views/demo/table/EditRowTable.vue
View file @
8eaf5756
...
...
@@ -28,33 +28,34 @@
editComponentProps
:
{
prefix
:
'
$
'
,
},
width
:
20
0
,
width
:
15
0
,
},
{
title
:
'
默认输入状态
'
,
dataIndex
:
'
name7
'
,
editRow
:
true
,
width
:
20
0
,
width
:
15
0
,
},
{
title
:
'
输入框校验
'
,
dataIndex
:
'
name1
'
,
editRow
:
true
,
align
:
'
left
'
,
// 默认必填校验
editRule
:
true
,
width
:
20
0
,
width
:
15
0
,
},
{
title
:
'
输入框函数校验
'
,
dataIndex
:
'
name2
'
,
editRow
:
true
,
align
:
'
right
'
,
editRule
:
async
(
text
)
=>
{
if
(
text
===
'
2
'
)
{
return
'
不能输入该值
'
;
}
return
''
;
},
width
:
200
,
},
{
title
:
'
数字输入框
'
,
...
...
@@ -62,7 +63,7 @@
editRow
:
true
,
editRule
:
true
,
editComponent
:
'
InputNumber
'
,
width
:
20
0
,
width
:
15
0
,
},
{
title
:
'
下拉框
'
,
...
...
@@ -102,7 +103,7 @@
valueFormat
:
'
YYYY-MM-DD
'
,
format
:
'
YYYY-MM-DD
'
,
},
width
:
20
0
,
width
:
15
0
,
},
{
title
:
'
时间选择
'
,
...
...
@@ -113,17 +114,7 @@
valueFormat
:
'
HH:mm
'
,
format
:
'
HH:mm
'
,
},
width
:
200
,
},
{
title
:
'
远程下拉
'
,
dataIndex
:
'
name4
'
,
editRow
:
true
,
editComponent
:
'
ApiSelect
'
,
editComponentProps
:
{
api
:
optionsListApi
,
},
width
:
200
,
width
:
100
,
},
{
title
:
'
勾选框
'
,
...
...
@@ -134,7 +125,7 @@
editValueMap
:
(
value
)
=>
{
return
value
?
'
是
'
:
'
否
'
;
},
width
:
2
00
,
width
:
1
00
,
},
{
title
:
'
开关
'
,
...
...
@@ -144,7 +135,7 @@
editValueMap
:
(
value
)
=>
{
return
value
?
'
开
'
:
'
关
'
;
},
width
:
2
00
,
width
:
1
00
,
},
];
export
default
defineComponent
({
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment