Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bill-manager-ui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
bill-manager-ui
Commits
fce772e3
Commit
fce772e3
authored
Oct 15, 2024
by
“yiyousong”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 表格组件添加插槽渲染
parent
db760ce2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
16 deletions
+38
-16
admin_2/src/components/autoRegister/YTable.vue
admin_2/src/components/autoRegister/YTable.vue
+38
-16
No files found.
admin_2/src/components/autoRegister/YTable.vue
View file @
fce772e3
...
...
@@ -9,22 +9,43 @@
v-bind=
"$attrs"
v-on=
"$listeners"
>
<el-table-column
v-for=
"(v, i) in column"
:key=
"i"
:reserve-selection=
"v.reserveSelection"
:prop=
"v.prop"
:type=
"v.type"
:index=
"v.index"
:label=
"v.label"
:width=
"v.width"
:align=
"v.align"
:fixed=
"v.fixed"
:formatter=
"v.formatter"
:min-width=
"v.minWidth"
:show-overflow-tooltip=
"v.showOverflowTooltip"
>
</el-table-column>
<template
v-for=
"(v, i) in column"
>
<el-table-column
v-if=
"!v.slot"
:key=
"i"
:reserve-selection=
"v.reserveSelection"
:prop=
"v.prop"
:type=
"v.type"
:index=
"v.index"
:label=
"v.label"
:width=
"v.width"
:align=
"v.align"
:fixed=
"v.fixed"
:formatter=
"v.formatter"
:min-width=
"v.minWidth"
:show-overflow-tooltip=
"v.showOverflowTooltip"
>
</el-table-column>
<el-table-column
v-else
:key=
"i"
:reserve-selection=
"v.reserveSelection"
:prop=
"v.prop"
:type=
"v.type"
:index=
"v.index"
:label=
"v.label"
:width=
"v.width"
:align=
"v.align"
:fixed=
"v.fixed"
:formatter=
"v.formatter"
:min-width=
"v.minWidth"
:show-overflow-tooltip=
"v.showOverflowTooltip"
>
<template
slot-scope=
"scope"
>
<slot
:name=
"v.prop"
v-bind=
"scope"
></slot>
</
template
>
</el-table-column>
</template>
</el-table>
</div>
</template>
...
...
@@ -67,6 +88,7 @@ export default {
},
},
computed
:
{},
created
()
{},
methods
:
{
clearSelection
()
{
this
.
$refs
.
MyTable
.
clearSelection
();
...
...
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