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