You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
3.4 KiB
84 lines
3.4 KiB
|
1 year ago
|
<template>
|
||
|
|
<div class="g-main" style="margin: 30px;">
|
||
|
|
<div class="f-flex" >
|
||
|
|
<div class="f-flex" style="align-items: center;">
|
||
|
|
<div>活动查询:</div>
|
||
|
|
<el-input placeholder="请输入内容" v-model="input" style="width: 200px" clearable>
|
||
|
|
</el-input>
|
||
|
|
</div>
|
||
|
|
<div class="f-flex" style="align-items: center;">
|
||
|
|
<div>状态:</div>
|
||
|
|
<el-input placeholder="请输入内容" v-model="input" style="width: 200px" clearable>
|
||
|
|
</el-input>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<el-button type="primary">查询</el-button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div >
|
||
|
|
<el-table :data="tableData" border style="width: 700px" >
|
||
|
|
<el-table-column label="序号" width="80" header-align="center" align="center" type="index" ></el-table-column>
|
||
|
|
<el-table-column prop="Community" header-align="center" align="center" label="主办方" >
|
||
|
|
</el-table-column>
|
||
|
|
<el-table-column prop="ActivityCount" header-align="center" align="center" label="活动地点" >
|
||
|
|
</el-table-column>
|
||
|
|
<el-table-column prop="ActivityCount" header-align="center" align="center" label="活动标题" >
|
||
|
|
</el-table-column>
|
||
|
|
. <el-table-column prop="ActivityCount" header-align="center" align="center" label="活动时间" >
|
||
|
|
</el-table-column>
|
||
|
|
<el-table-column prop="ActivityCount" header-align="center" align="center" label="状态" >
|
||
|
|
</el-table-column>
|
||
|
|
<!-- <el-table-column label="操作" fixed="right" width="250" header-align="center" align="center" class="operate">
|
||
|
|
<template slot-scope="scope">
|
||
|
|
<el-button type="text" style="color:#1C6AFD;" size="small" @click="handleDetail(scope.row)">查看</el-button>
|
||
|
|
<el-button type="text" style="color:#1C6AFD;" size="small"
|
||
|
|
@click="handleEdit(scope.row)">活动记录</el-button>
|
||
|
|
<el-button type="text" style="color:#1C6AFD;" size="small"
|
||
|
|
@click="handleDelete(scope.row)">积分调整</el-button>
|
||
|
|
</template>
|
||
|
|
</el-table-column> -->
|
||
|
|
</el-table>
|
||
|
|
<div>
|
||
|
|
<el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page.sync="pageNo"
|
||
|
|
:page-sizes="[10, 20, 50]" :page-size="pageSize" layout="sizes, prev, pager, next, total" :total="total">
|
||
|
|
</el-pagination>
|
||
|
|
</div>
|
||
|
|
<el-dialog :visible.sync="Record" :close-on-click-modal="false" :close-on-press-escape="false" title="活动记录"
|
||
|
|
width="750px" top="10vh" class="dialog-h" @closed="diaClose">
|
||
|
|
<Record :list="fmData"/>
|
||
|
|
</el-dialog>
|
||
|
|
<el-dialog :visible.sync="formShow" :close-on-click-modal="false" :close-on-press-escape="false" title="查看"
|
||
|
|
width="750px" top="10vh" class="dialog-h" @closed="diaClose">
|
||
|
|
<see :list="fmData"/>
|
||
|
|
</el-dialog>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<script>
|
||
|
|
|
||
|
|
export default {
|
||
|
|
|
||
|
|
name: "see",
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
labelPosition: 'right',
|
||
|
|
tableData: [],
|
||
|
|
};
|
||
|
|
},
|
||
|
|
props:{
|
||
|
|
list:{
|
||
|
|
type: Object,
|
||
|
|
default: () => {}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {},
|
||
|
|
created() {
|
||
|
|
console.log(this.list,"list");
|
||
|
|
this.tableData=this.list
|
||
|
|
},
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
@import "@/assets/scss/modules/management/list-main.scss";
|
||
|
|
</style>
|