event_publishing_result.inc 660 Bytes
<?php
/**
 *  活动发布完成
 * $Id: event_publishing_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="goon()" class="edit_btn">继续发布</el-button>
<el-button type="primary" @click="tolist()" class="edit_btn">活动列表</el-button>
</div>
<script type="text/javascript">
	new Vue({
	  el:'#result',
	  methods:{
	    goon:function(){
  		  window.location.href='./event_publishing.php';
  		},
  		tolist:function(){
  		  window.location.href='./event_list.php';
  		}
	  }
	})
</script>