This commit is contained in:
yanran200730
2023-02-08 15:24:56 +08:00
parent 081effb3b3
commit d000c5f394

View File

@@ -65,6 +65,13 @@
<template #content>
<ai-search-bar class="search-bar">
<template #left>
<ai-select
v-model="search.activeStatus"
clearable
placeholder="请选择活跃情况"
:selectList="statusList"
@change="search.current = 1, getList()">
</ai-select>
<ai-download
:instance="instance"
url="/app/appmarketingactivityinfo/exportSignUpList"
@@ -192,6 +199,8 @@
colConfigs: [
{ prop: 'name', label: '姓名', align: 'left', width: '200px' },
{ prop: 'phone', label: '手机号', align: 'center' },
{ prop: 'departmentName', label: '所属部门', align: 'center' },
{ prop: 'activeCount', label: '活跃天数', align: 'center' },
{ prop: 'createTime', label: '报名时间', align: 'center' }
],
prizeColConfigs: [
@@ -210,13 +219,24 @@
search: {
size: 10,
name: '',
activeStatus: '',
current: 1
},
prizes: [],
tableData: [],
total: 0,
info: {},
isShowPhone: false
isShowPhone: false,
statusList: [
{
dictName: '无活跃',
dictValue: '0'
},
{
dictName: '有活跃',
dictValue: '1'
}
]
}
},