| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <?php include mymps_tpl('inc_header'); ?>
- <link rel="Stylesheet" type="text/css" href="template/css/new.dialog.css" />
- <link rel="stylesheet" type="text/css" href="template/css/new.my.css" />
- <script language="javascript" src="template/javascript.js"></script>
- <script language="javascript">
- function check_sub(){
- if (document.form1.gname.value=="") {
- alert('请填写活动标题');
- document.form1.gname.focus();
- return false;
- }
- if (document.form1.gaddress.value=="") {
- alert('请填写活动地点!');
- document.form1.gaddress.focus();
- return false;
- }
- if (document.form1.meetdate.value=="") {
- alert('请选择集合时间!');
- document.form1.meetdate.focus();
- return false;
- }
- if (document.form1.enddate.value=="") {
- alert('请选择结束时间!');
- document.form1.enddate.focus();
- return false;
- }
- if (document.form1.des.value=="") {
- alert('请填写简短说明!');
- document.form1.des.focus();
- return false;
- }
- return true;
- }
- </script>
- <link rel="stylesheet" href="../include/datepicker/ui.css">
- <script type="text/javascript" src="template/jquery.172.min.js"></script>
- <script type="text/javascript" src="../include/datepicker/datepicker.js"></script>
- <script language='javascript'>
- $(function(){
- $("#meetdate").datepicker();
- $("#enddate").datepicker();
- });
- </script>
- </head>
- <body class="<?php echo $mymps_global['cfg_tpl_dir']; ?>">
- <div class="container">
- <?php include mymps_tpl('inc_head'); ?>
- <div id="main" class="main section-setting">
- <div class="clearfix main-inner">
- <div class="content">
- <div class="clearfix content-inner">
- <div class="content-main">
- <div class="content-main-inner">
- <div class="pwrap setting-userinfo">
- <div class="phead"><div class="phead-inner"><div class="phead-inner">
- <h3 class="ptitle"><span><?php echo $id ? '修改' : '发起'?>团购</span></h3>
- <p class="pextra"><a href="?m=group&type=corp"><span>« 返回我发起的团购</span></a></p>
- </div></div></div>
- <div class="pbody">
-
- <div id="msg_success"></div>
- <div id="msg_error"></div>
- <div id="msg_alert"></div>
- <div style="display:none;">
- <iframe width=0 height=0 src='' id="iframe_area" name="iframe_area"></iframe>
- <iframe width=0 height=0 src='' id="iframe_street" name="iframe_street"></iframe>
- <form method="post" target="iframe_area" id="form_area"></form>
- </div>
- <form action="?m=group&ac=detail&type=corp" enctype="multipart/form-data" method="post" name="form1" onSubmit="return check_sub();">
- <?php if(!empty($id)){?>
- <input name="id" value="<?=$id?>" type="hidden">
- <input name="picture_old" value="<?=$edit['picture']?>" type="hidden">
- <input name="pre_picture_old" value="<?=$edit['pre_picture']?>" type="hidden">
- <?php }?>
- <input name="tid" value="<?=$tid?>" type="hidden">
- <div class="formgroup">
- <div class="formrow">
- <h3 class="label"><label>团购名称<font color="red">*</font></label></h3>
- <div class="form-enter">
- <input name="gname" type="text" class="text" value="<?=$edit['gname']?>" style="width:300px">
- </div>
- </div>
-
- <div class="formrow">
- <h3 class="label">团购分类<font color="red">*</font></h3>
- <div class="form-enter">
- <?php echo get_groupclass_select('cate_id',$edit['cate_id']); ?>
- </div>
- </div>
-
- <div class="formrow">
- <h3 class="label">所属地区<font color="red">*</font></h3>
- <div class="form-enter">
- <select name="areaid" class="input">
- <?=cat_list('area',0,$edit['areaid'])?>
- </select>
- </div>
- </div>
-
- <div class="formrow">
- <h3 class="label">活动地点<font color="red">*</font></h3>
- <div class="form-enter">
- <input name="gaddress" value="<?php echo $edit['gaddress']; ?>" class="text" style="width:300px">
- </div>
- </div>
-
- <div class="formrow">
- <h3 class="label">集合时间<font color="red">*</font></h3>
- <div class="form-enter">
- <input name="meetdate" id="meetdate" readonly value="<?php echo $edit['meetdate']; ?>" class="text">
- </div>
- </div>
-
- <div class="formrow">
- <h3 class="label">结束时间<font color="red">*</font></h3>
- <div class="form-enter">
- <input name="enddate" id="enddate" readonly value="<?php echo $edit['enddate']; ?>" class="text">
- </div>
- </div>
-
- <?php if($edit[pre_picture]){?>
- <div class="formrow">
- <h3 class="label">原来的图片</h3>
- <div class="form-enter">
- <?php
- echo "<img src=".$mymps_global[SiteUrl]."".$edit[pre_picture]." style='_margin-top:expression(( 180 - this.height ) / 2);' />\r\n";
- ?>
- </div>
- </div>
- <?php }?>
-
- <div class="formrow">
- <h3 class="label"><?php echo $id ? '更新' : '上传'; ?>图片</h3>
- <div class="form-enter">
- <input type="file" name="group_image" size="30" id="litpic">
- </div>
- </div>
-
- <div class="formrow">
- <h3 class="label">简短说明<font color="red">*</font></h3>
- <div class="form-enter">
- <textarea name="des" class="texttarea" style="width:360px; height:100px"><?=$edit['des']?></textarea>
- </div>
- </div>
-
- <div class="formrow">
- <h3 class="label">详细说明<font color="red">*</font></h3>
- <?php echo $acontent; ?>
- </div>
-
- <div class="formrow formrow-action">
- <span class="minbtn-wrap"><span class="btn"><input type="submit" value="提交<?php echo empty($id) ? '发起' : '保存'; ?>" class="button" name="group_submit" /></span></span>
- </div>
-
- </div>
- </form>
-
- </div>
- <div class="pfoot"><p><b>-</b></p></div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <?php include mymps_tpl('inc_sidebar'); ?>
- </div>
- </div>
- <?php include mymps_tpl('inc_foot'); ?>
- </div>
- </body>
- </html>
|