139 lines
3.5 KiB
Vue
139 lines
3.5 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form
|
|
:model="queryParams"
|
|
ref="queryForm"
|
|
v-show="showSearch"
|
|
:inline="true"
|
|
@submit.native.prevent
|
|
>
|
|
<el-form-item label="姓名/单位" prop="name">
|
|
<el-input
|
|
v-model="queryParams.name"
|
|
placeholder="请输入关键字"
|
|
clearable
|
|
size="small"
|
|
style="width: 240px"
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button
|
|
type="primary"
|
|
icon="el-icon-search"
|
|
size="mini"
|
|
@click="handleQuery"
|
|
>搜索</el-button
|
|
>
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
|
|
>重置</el-button
|
|
>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<!-- <el-row :gutter="10" class="mb8">
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="primary"
|
|
plain
|
|
icon="el-icon-plus"
|
|
size="mini"
|
|
@click="handleAdd()"
|
|
>新增</el-button
|
|
>
|
|
</el-col>
|
|
<right-toolbar
|
|
:showSearch.sync="showSearch"
|
|
@queryTable="getList"
|
|
></right-toolbar>
|
|
</el-row> -->
|
|
|
|
<el-table v-loading="loading" :data="dataList">
|
|
<el-table-column label="数据编号" prop="id" align="center" />
|
|
<el-table-column label="姓名单位名称" prop="name" align="center" />
|
|
<!-- <el-table-column label="分类" prop="name" align="center" /> -->
|
|
<!-- <el-table-column label="所属领域" prop="name" align="center" /> -->
|
|
<el-table-column label="联系电话" prop="mobile" align="center" />
|
|
<el-table-column label="报名时间" align="center" prop="created_at">
|
|
<template slot-scope="scope">
|
|
<span>{{ parseTime(scope.row.created_at) }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<!-- <el-table-column
|
|
label="操作"
|
|
align="center"
|
|
class-name="small-padding fixed-width"
|
|
>
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-delete"
|
|
@click="handleDelete(scope.row)"
|
|
>删除</el-button
|
|
>
|
|
</template>
|
|
</el-table-column> -->
|
|
</el-table>
|
|
|
|
<pagination
|
|
v-show="total > 0"
|
|
:total="total"
|
|
:page.sync="queryParams.page_num"
|
|
:limit.sync="queryParams.page_size"
|
|
@pagination="getList"
|
|
/>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { signUpList } from "@/api/website/activity";
|
|
export default {
|
|
data() {
|
|
return {
|
|
// 遮罩层
|
|
loading: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
dataList: [],
|
|
queryParams: {
|
|
activity_id: undefined,
|
|
name: undefined,
|
|
page_num: 1,
|
|
page_size: 10,
|
|
},
|
|
};
|
|
},
|
|
methods: {
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.page_num = 1;
|
|
this.getList();
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.resetForm("queryForm");
|
|
this.handleQuery();
|
|
},
|
|
getList() {
|
|
this.loading = true;
|
|
signUpList(this.queryParams).then((response) => {
|
|
this.dataList = response.data.data;
|
|
this.total = response.data.count;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
},
|
|
created() {
|
|
let { id } = this.$route.query;
|
|
if (!id) {
|
|
this.$message.error("无ID");
|
|
this.$router.go(-1);
|
|
return;
|
|
}
|
|
this.queryParams.activity_id = id;
|
|
this.getList();
|
|
},
|
|
};
|
|
</script> |