1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php
/**
* 活动审核详情
* $Id: event_examine_input.php,v 1.1 2020/01/03 11:18:46 Exp $
* @author lixq
* @package manager.public_html
**/
?>
<div id="change">
<p class="edit_title">活动发布</p>
<form id="form" name="event_examine_input" action="event_examine_result.php" method="post" enctype="multipart/form-data">
<input type="hidden" name="id" value="<?=$id?>"/>
<input type="hidden" name="status" value="NEW"/>
<div class="edit_content">
<p>活动发布人</p>
<p class="begin_blank"><?=htmlspecialchars($volunteer_event_dat->author) ?></p>
<p>宣传头图</p>
<img src="<?=$volunteer_event_dat->front_image?>" height="300px" alt="" />
<p>活动名称</p>
<p class="begin_blank"><?=htmlspecialchars($volunteer_event_dat->title) ?></p>
<p>活动介绍</p>
<p class="begin_blank"><?=htmlspecialchars($volunteer_event_dat->comment) ?></p>
<p>活动地点</p>
<p class="begin_blank"><?=htmlspecialchars($volunteer_event_dat->position) ?></p>
<p>征集范围</p>
<p class="begin_blank">
<?=!empty($volunteer_event_dat->province)?$volunteer_event_dat->province . $volunteer_event_dat->city .$volunteer_event_dat->district."范围内学校": ""?>
<?=$volunteer_event_dat->include_social_user?"社会人士":""?>
</p>
<p>活动人数</p>
<p class="begin_blank"><?=$volunteer_event_dat->max_member ==0 ?"不限制":$volunteer_event_dat->max_member?></p>
<p>活动期限</p>
<p class="begin_blank"><?=$volunteer_event_dat->start_time ." — ".$volunteer_event_dat->finish_time?></p>
<p>活动时长</p>
<p class="begin_blank"><?=htmlspecialchars($volunteer_event_dat->time_length) ?></p>
<p>报名截止时间</p>
<p class="begin_blank"><?=htmlspecialchars($volunteer_event_dat->enroll_time) ?></p>
<p>活动负责人</p>
<p class="begin_blank"><?=htmlspecialchars($volunteer_event_dat->leader_name) ?></p>
<p>联系方式</p>
<p class="begin_blank"><?=htmlspecialchars($volunteer_event_dat->leader_contact) ?></p>
<p>集合地点</p>
<p class="begin_blank"><?=htmlspecialchars($volunteer_event_dat->venue) ?></p>
<p>集合时间</p>
<p class="begin_blank"><?=htmlspecialchars($volunteer_event_dat->venue_time) ?></p>
<p>状态</p>
<el-select v-model="status" size="small" style="margin-left: 10px;"@change="currentSel">
<el-option
v-for="item in status_list"
:key="item.id"
:label="item.title"
:value="item.id">
</el-option>
</el-select>
<br/><br/>
<el-button type="primary" @click="edit()" class="edit_btn">编辑</el-button>
<el-button type="primary" @click="back()" class="edit_btn">返回</el-button>
<br/><br/>
</div>
</form>
</div>
<script type="text/javascript">
var v = new Vue({
el:'#change',
data:{
status_list:[{"id":"NEW","title":"未审核"},{"id":"OK","title":"审核通过"},{"id":"NG","title":"审核不通过"}],
status:'NEW',
title:''
},
methods:{
edit:function(){
if(this.title && this.title != "未审核"){
this.$confirm('是否状态更改为'+this.title+'?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
$("input[name='status']").val(this.status);
$('#form').submit();
}).catch(() => {
this.$message({
type: 'info',
message: '已取消更改!'
});
});
}
},
currentSel(selVal) {
let obj = {};
obj = this.status_list.find((item)=>{
return item.id === selVal;
});
this.title = obj.title;
},
back:function(){
window.history.go(-1);
}
}
})
</script>