| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <link href="<?php echo WEB_SITE_GLOBAL ?>/img/admin/style.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/jquery-1.7.1.min.js"></script>
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/admin/over.js"></script>
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/admin/admin.js"></script>
- </head>
- <body>
- <div class="main_content new_product">
- <div class="crumbbar">快速导航 » <?php echo $data['map']; ?></div>
- <div class=" clearfix">
- <div class="globle_list">
- <table width="100%" border="0" cellpadding="2" cellspacing="6" style="_margin-left:-10px; ">
- <tbody><tr>
- <td><table width="100%" border="0" cellpadding="2" cellspacing="6">
- <tbody><tr>
- <td>
- <div id="append"></div>
- <form action="/admin/animation_manage_edit" method="post" onsubmit="return article_form()">
- <input type="hidden" name="aid" value="<?php echo $data['animation']['0']['aid']; ?>"></input>
- <input type="hidden" name="is_edit" value="1"></input>
- <table cellspacing="1" cellpadding="4" width="100%" align="center" class="tableborder">
- <tbody><tr class="header">
- <td colspan="2">动画</td>
- </tr>
- <tr>
- <td class="altbg1" width="100"><b>属性:</b></td>
- <td class="altbg2">通用:<input type="radio"" name="belong" id="title" <?php if( $data['animation']['0']['belong']==1 ): ?> checked <?php endif; ?> value="1" /> 专属:<input type="radio" <?php if( $data['animation']['0']['belong']==2 ): ?> checked <?php endif; ?> name="belong" id="title" value="2" ></input></td>
- </tr>
- <tr>
- <td class="altbg1" width="100"><b>标题:</b></td>
- <td class="altbg2"><input class="text" type="text" name="title" id="title" value="<?php echo $data['animation']['0']['title']; ?>" style="width: 300px"/></td>
- </tr>
- <tr>
- <td class="altbg1" width="100"><b>播放代码:</b></td>
- <td class="altbg2"><textarea rows="6" cols="70" id="url" name="url" ><?php echo $data['animation']['0']['url']; ?></textarea></td>
- </tr>
- <tr>
- <td class="altbg1" width="100"><b>图片地址:</b></td>
- <td class="altbg2"><input class="text" id="img_url" name="img_url" style="width:550px" value="<?php echo $data['animation']['0']['img_url']; ?>" /></td>
- </tr>
- <tr>
- <td class="altbg1" width="100"><b>下载地址:</b></td>
- <td class="altbg2"><input class="text" id="down_url" name="down_url" value="<?php echo $data['animation']['0']['down_url']; ?>" style="width:550px" /></br>
- http://d1.smartcost.com.cn/video/文件名
- </td>
- </tr>
- </tbody></table>
- <br/>
- <center><input type="submit" class="button" name="submit" value="提 交"/></center><br/>
- </form>
- </td></tr>
- </tbody>
- </table>
- </td></tr></tbody></table>
- </div>
- </div>
- </div>
- </body>
- </html>
|