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
772810c2
...
772810c20cd34fd025906b3e7e118d41b8c46a71
authored
2022-01-17 14:36:09 +0800
by
张浩
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
commit
1 parent
b53d587b
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 @
772810c
...
...
@@ -14,6 +14,8 @@
prop=
"name"
label=
"奖品名称"
sortable
:filters=
"tvmName"
:filter-method=
"filterHandler"
min-width=
"2"
>
</el-table-column>
<el-table-column
...
...
@@ -386,6 +388,7 @@
activityPopPanels
:
[],
operateBannerInfos
:
[],
operateMsgInfos
:
[],
tvmName
:
[],
activityInfosDrawer
:
false
,
activityInfosForm
:
{
id
:
''
,
...
...
@@ -429,6 +432,7 @@
this
.
activityPopPanels
=
res
.
data
.
activityPopPanels
this
.
operateBannerInfos
=
res
.
data
.
operateBannerInfos
this
.
operateMsgInfos
=
res
.
data
.
operateMsgInfos
this
.
tvmName
=
res
.
data
.
tvmName
loading
.
close
();
}).
catch
(
error
=>
{
console
.
log
(
error
);
...
...
@@ -498,6 +502,10 @@
type
:
'error'
});
})
},
filterHandler
(
value
,
row
,
column
)
{
const
property
=
column
[
'property'
];
return
row
[
property
]
===
value
;
}
}
}
...
...
Please
register
or
sign in
to post a comment