Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张浩
/
br-client
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
d2d0e7bb
...
d2d0e7bb9279abc56d5bf98ec8186b1179b6bdb5
authored
2022-01-17 17:31:13 +0800
by
张浩
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
commit
1 parent
385c607a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
src/page/activityConfig.vue
src/page/activityConfig.vue
View file @
d2d0e7b
...
...
@@ -53,6 +53,8 @@
<el-table-column
prop=
"userGroupType"
label=
"用户角色"
:filters=
"tvmUserGroup"
:filter-method=
"filterHandlerUserGroup"
min-width=
"1"
>
</el-table-column>
<el-table-column
...
...
@@ -398,6 +400,7 @@
tvmExtdata
:
[],
tvmAwardId
:
[],
tvmStartTime
:
[],
tvmUserGroup
:
[],
activityInfosDrawer
:
false
,
activityInfosForm
:
{
id
:
''
,
...
...
@@ -445,6 +448,7 @@
this
.
tvmExtdata
=
res
.
data
.
tvmExtdata
this
.
tvmAwardId
=
res
.
data
.
tvmAwardId
this
.
tvmStartTime
=
res
.
data
.
tvmStartTime
this
.
tvmUserGroup
=
res
.
data
.
tvmUserGroup
loading
.
close
();
}).
catch
(
error
=>
{
console
.
log
(
error
);
...
...
@@ -530,6 +534,10 @@
filterHandlerStartTime
(
value
,
row
,
column
)
{
const
property
=
column
[
'property'
];
return
row
[
property
]
===
value
;
},
filterHandlerUserGroup
(
value
,
row
,
column
)
{
const
property
=
column
[
'property'
];
return
row
[
property
]
===
value
;
}
}
}
...
...
Please
register
or
sign in
to post a comment