144
This commit is contained in:
@@ -11,10 +11,44 @@
|
|||||||
@change="search.current = 1, getList()">
|
@change="search.current = 1, getList()">
|
||||||
</ai-title>
|
</ai-title>
|
||||||
<template #content>
|
<template #content>
|
||||||
<ai-search-bar>
|
<ai-search-bar bottomBorder>
|
||||||
<template #left>
|
<template #left>
|
||||||
|
<el-date-picker
|
||||||
|
v-model="search.beginDate"
|
||||||
|
type="date"
|
||||||
|
size="small"
|
||||||
|
value-format="yyyy-MM-dd"
|
||||||
|
placeholder="选择开始日期"
|
||||||
|
@change="search.current = 1, getList()">
|
||||||
|
</el-date-picker>
|
||||||
|
<el-date-picker
|
||||||
|
v-model="search.endDate"
|
||||||
|
type="date"
|
||||||
|
size="small"
|
||||||
|
value-format="yyyy-MM-dd"
|
||||||
|
placeholder="选择结束日期"
|
||||||
|
@change="search.current = 1, getList()">
|
||||||
|
</el-date-picker>
|
||||||
|
<ai-select
|
||||||
|
v-model="search.status"
|
||||||
|
clearable
|
||||||
|
placeholder="活动状态"
|
||||||
|
:selectList="dict.getDict('fdIntegralTaskStatus')"
|
||||||
|
@change="search.current = 1, getList()">
|
||||||
|
</ai-select>
|
||||||
<el-button size="small" type="primary" icon="iconfont iconAdd" @click="toAdd('')" >创建活动</el-button>
|
<el-button size="small" type="primary" icon="iconfont iconAdd" @click="toAdd('')" >创建活动</el-button>
|
||||||
</template>
|
</template>
|
||||||
|
<template #right>
|
||||||
|
<el-input
|
||||||
|
v-model="search.title"
|
||||||
|
size="small"
|
||||||
|
placeholder="活动名称/创建人"
|
||||||
|
clearable
|
||||||
|
v-throttle="() => {getList()}"
|
||||||
|
@clear="search.title = '', getList()"
|
||||||
|
suffix-icon="iconfont iconSearch">
|
||||||
|
</el-input>
|
||||||
|
</template>
|
||||||
</ai-search-bar>
|
</ai-search-bar>
|
||||||
<ai-table
|
<ai-table
|
||||||
:tableData="tableData"
|
:tableData="tableData"
|
||||||
@@ -61,7 +95,11 @@
|
|||||||
current: 1,
|
current: 1,
|
||||||
size: 10,
|
size: 10,
|
||||||
total: 0,
|
total: 0,
|
||||||
areaId: ''
|
title: '',
|
||||||
|
areaId: '',
|
||||||
|
status: '',
|
||||||
|
beginDate: '',
|
||||||
|
endDate: ''
|
||||||
},
|
},
|
||||||
tableData: [],
|
tableData: [],
|
||||||
img: '',
|
img: '',
|
||||||
@@ -79,7 +117,8 @@
|
|||||||
computed: {
|
computed: {
|
||||||
colConfigs() {
|
colConfigs() {
|
||||||
return [
|
return [
|
||||||
{ prop: "title", label: "活动名称", align: "left", showOverflowTooltip: true },
|
{ prop: "title", label: "活动名称", align: "left" },
|
||||||
|
{ prop: "areaName", label: "活动名称", align: "center" },
|
||||||
{ prop: "createUserName", label: "创建人", align: "center" },
|
{ prop: "createUserName", label: "创建人", align: "center" },
|
||||||
{
|
{
|
||||||
prop: "intoBegintime",
|
prop: "intoBegintime",
|
||||||
|
|||||||
Reference in New Issue
Block a user