Commit 8e5ffd3b authored by 黄奎's avatar 黄奎

页面修改

parent daedf24f
<style> <style>
.signList_Table{ .signList_Table {
width:100%; width: 100%;
border-collapse:collapse; border-collapse: collapse;
margin-top:20px; margin-top: 20px;
} }
.signTableDiv{
width:100%; .signTableDiv {
width: 100%;
min-width: 800px; min-width: 800px;
/* overflow: hidden; */ /* overflow: hidden; */
overflow-x: auto; overflow-x: auto;
} }
.signList_Table th{
border:1px solid #EBEEF5; .signList_Table th {
height:48px; border: 1px solid #EBEEF5;
height: 48px;
line-height: 48px; line-height: 48px;
text-align: center; text-align: center;
color:#909399; color: #909399;
padding:0 10px; padding: 0 10px;
text-align: left; text-align: left;
} }
.signList_Table td{
border:1px solid #EBEEF5; .signList_Table td {
height:48px; border: 1px solid #EBEEF5;
height: 48px;
line-height: 48px; line-height: 48px;
text-align: center; text-align: center;
color:#606266; color: #606266;
font-size:14px; font-size: 14px;
padding:0 10px; padding: 0 10px;
text-align: left; text-align: left;
} }
.signList_Table tr:hover>td{
.signList_Table tr:hover>td {
background-color: #F5F7FA; background-color: #F5F7FA;
} }
</style> </style>
<template> <template>
<div class="signList tradeactivity"> <div class="signList tradeactivity">
...@@ -86,6 +91,9 @@ ...@@ -86,6 +91,9 @@
<th> <th>
地址 地址
</th> </th>
<th>
操作
</th>
</tr> </tr>
</thead> </thead>
<tbody v-for="(item,index) in tableData" :key="index"> <tbody v-for="(item,index) in tableData" :key="index">
...@@ -120,6 +128,11 @@ ...@@ -120,6 +128,11 @@
<td> <td>
{{sItem.CountryInfo}} {{sItem.CountryInfo}}
</td> </td>
<td>
<el-tooltip class="item" effect="dark" content="删除" placement="top" style="cursor:pointer;">
<img @click="delSign(sItem)" src="../../assets/img/userman/del.png" alt="" />
</el-tooltip>
</td>
</tr> </tr>
</tbody> </tbody>
...@@ -173,6 +186,25 @@ ...@@ -173,6 +186,25 @@
this.msg.pageIndex = val; this.msg.pageIndex = val;
this.getList(); this.getList();
}, },
//删除报名
delSign(item) {
let that = this;
that.Confirm("是否删除此报名人员?", function () {
that.apipost(
"/api/AppletTrade/DeleteTrdceConsult", {
Id: item.Id,
},
(res) => {
if (res.data.resultCode == 1) {
that.Success(res.data.message);
that.getList();
} else {
that.Error(res.data.message);
}
}
);
});
}
} }
}; };
......
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