Commit 604e1338 by zhaopanyu

Merge branch 'master' of 49.232.152.146:qangqi/dd_school

parents a021ae4e ef905027
......@@ -14,9 +14,8 @@ export function getsigninInfo(query) {
// 获取社团报名审核详细信息
export function listsigninInfo(id) {
return request({
url: '/signin/'+ id,
url: `/signin/${id}`,
method: 'get',
})
}
......
......@@ -66,7 +66,7 @@
>不同意</el-button
>
</div>
<el-button @click="handleDelete(scope.row)" type="text" size="small"
<el-button @click="handQuery(scope.row)" type="text" size="small"
>查看</el-button
>
</template>
......@@ -221,14 +221,18 @@ export default {
this.resetForm("form");
},
// 查看
handleDelete(row) {
handQuery(row) {
console.log(row, "查看row");
this.reset();
const ids = row.id || this.ids;
const ids = row.id;
this.title = "社团报名审核";
this.dialogTableVisible = true;
// this.form = row;
listsigninInfo(ids).then((response) => {
// console.log("response", response);
this.form = response.data;
this.dialogTableVisible = true;
this.title = "社团报名审核";
console.log(ids, "id");
if (response.data && response.data.name) {
this.form = response.data;
}
});
},
// 同意
......
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