12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <!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/calendar.js"></script>
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/editor_config.js"></script>
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/editor.min.js"></script>
- <link rel="stylesheet" href="<?php echo WEB_SITE_GLOBAL ?>/css/themes/default/ueditor.css" />
- </head>
- <body>
- <div class="main_content new_product">
- <div class="crumbbar"><a href="/index/main_navon" target="main">快速导航</a> » <?php echo $data['map']; ?></div>
- <div class="main_toolbar clearfix">
- <table cellspacing="0" cellpadding="0" class="tableForm">
- <tbody>
- <tr><td width="100"><b>问题</b></td><td><?php echo $data['vip_question']['title']; ?></td></tr>
- <tr><td><b>用户问题</b></td><td><?php echo $data['vip_question']['description']; ?></td></tr>
- <tr>
- <td><b>回答</b></td>
- <td>
- <form name="setsatisfy" id="setsatisfy" action="/index/main_vip_question_add_answer_manage" method="post" >
- <input type="hidden" name="qid" value="<?php echo $data['vip_question']['id']; ?>" />
- <?php if( isset($data['vip_answer']['content']) ): ?>
- <input type="hidden" name="aid" value="<?php echo $data['vip_answer']['id']; ?>" />
- <script type="text/plain" id="content_text" name="content_text" style="width:550px"><?php echo $data['vip_answer']['content']; ?></script>
- <?php else: ?>
- <script type="text/plain" id="content_text" name="content_text" style="width:550px"></script>
- <?php endif; ?>
- <script type="text/javascript">
- editor = new UE.ui.Editor();
- editor.render('content_text');
- </script>
- <input type="submit" id="addanswerkvip" class="button btn-green" value="确定"></input>
- </form>
- </td>
- </tr>
- <?php if( !empty($data['vip_answer']['to_ask']) ): ?>
-
- <tr><td><b>用户追问</b></td><td><?php echo $data['vip_answer']['to_ask']; ?></td></tr>
- <tr>
-
- <td><b>回答追问</b></td>
- <td>
- <form name="setsatisfy" id="setsatisfy" action="/index/main_vip_question_add_answeragain_manage" method="post" >
- <script type="text/plain" id="answer_again_text" name="answer_again_text" style="width:550px"><?php echo $data['vip_answer']['answer_again']; ?></script>
- <script type="text/javascript">
- editor2 = new UE.ui.Editor();
- editor2.render('answer_again_text');
- </script>
- <input type="hidden" name="qid" value="<?php echo $data['vip_question']['id']; ?>" />
-
- <input type="submit" id="addansweragainkvip" class="button btn-green" value="确定"></input>
- </form>
- </td>
-
- </tr>
-
- <tr><td><b>满意评价</b></td><td><?php echo $data['vip_answer']['comment']; ?></td></tr>
-
- <?php endif; ?>
- <?php if( !empty($data['vip_answer']['content']) ): ?>
- <tr><td><b>不满意原因</b></td><td><?php echo $data['vip_question']['refunds_description']; ?></td></tr>
- <?php endif; ?>
-
-
-
- </tbody></table>
-
-
-
-
- <a href="javascript:history.go(-1)">返回</a>
- </div>
- </div>
- </body>
- </html>
|