Commit 7261dc26 authored by zhengke's avatar zhengke

修改

parent aa0b1ac6
<style>
.signList_Table{
width:100%;
border-collapse:collapse;
margin-top:20px;
}
.signTableDiv{
width:100%;
min-width: 800px;
/* overflow: hidden; */
overflow-x: auto;
}
.signList_Table th{
border:1px solid #EBEEF5;
height:48px;
line-height: 48px;
text-align: center;
color:#909399;
padding:0 10px;
text-align: left;
}
.signList_Table td{
border:1px solid #EBEEF5;
height:48px;
line-height: 48px;
text-align: center;
color:#606266;
font-size:14px;
padding:0 10px;
text-align: left;
}
.signList_Table tr:hover>td{
background-color: #F5F7FA;
}
</style>
<template>
<div class="signList tradeactivity">
<div class="head-title">
......@@ -17,7 +52,8 @@
<el-button style="float:right;margin-top: -5px;" size="small" type="primary" @click="Export()">导出</el-button>
</div>
</div>
<table class="signTable">
<div class="signTableDiv">
<table class="signList_Table" cellpadding="0" cellspa>
<thead>
<tr>
<th>
......@@ -88,6 +124,7 @@
</tbody>
</table>
</div>
<el-pagination style="text-align:right" background @current-change="handleCurrentChange" :page-size="msg.pageSize"
:current-page.sync="msg.pageIndex" layout="total,prev, pager, next" :total="total">
</el-pagination>
......@@ -110,7 +147,7 @@
created() {},
mounted() {
if (this.$route.query.Id) {
//this.msg.ActivityId = this.$route.query.Id;
this.msg.ActivityId = this.$route.query.Id;
}
this.getList();
},
......@@ -122,7 +159,7 @@
if (res.data.resultCode == 1) {
this.tableData = res.data.data.pageData;
console.log("tableData", this.tableData);
this.total = res.data.data.pageCount;
this.total = res.data.data.count;
}
})
},
......
......@@ -46,9 +46,10 @@
</el-table-column>
<el-table-column prop="JoinNum" label="报名人数">
<template slot-scope="scope">
<el-button type="text" @click="dialogTableVisible = true,getItem(scope.row)">
<!-- <el-button type="text" @click="dialogTableVisible = true,getItem(scope.row)">
{{scope.row.JoinNum}}
</el-button> -->
{{scope.row.JoinNum}}
</el-button>
</template>
</el-table-column>
<el-table-column prop="Id" width="200" label="操作">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment