<?php
/**
* 活动审核完成
* $Id: event_examine_result.inc,v 1.12020/01/03 11:18:46 Exp $
* @author lixq
* @access public
* @package manager.templates
*/
?>
<br />
活动审核完成!
<br />
<br />
<div id="result">
<el-button type="primary" @click="back()" class="edit_btn">返回</el-button>
</div>
<script type="text/javascript">
new Vue({
el:'#result',
methods:{
back:function(){
window.location.href='./event_examine.php';
}
}
})
</script>