You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
3.6 KiB
113 lines
3.6 KiB
<!-- $Id: msg_info.htm 16854 2009-12-07 06:20:09Z sxc_shop $ -->
|
|
{include file="pageheader.htm"}
|
|
<div class="main-div">
|
|
<table width="98%">
|
|
<tr>
|
|
<td style="padding: 0px 20px">
|
|
<h3>{$msg.msg_title|escape:"html"}</h3>
|
|
<hr size="1" />
|
|
<div>{$msg.msg_content|escape:"html"|nl2br}</div>
|
|
{if $msg.message_img}
|
|
<div align="right">
|
|
<a href="../data/feedbackimg/{$msg.message_img}" target="_bank" width="300" height="400">{$lang.view_upload_file}</a>
|
|
<a href="user_msg.php?act=drop_file&id={$msg.msg_id}&file={$msg.message_img}">{$lang.drop}</a>
|
|
</div>
|
|
{/if}
|
|
<div align="right" nowrap="nowrap">【 {if $msg.msg_area eq "1"}{$lang.message_board}{else}{$lang.user_center}{/if} 】<a href="mailto:{$msg.user_email}">{$msg.user_name}</a> @ {$msg.msg_time}</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="center">
|
|
{if $msg.msg_status eq "0"}
|
|
<input type="button" onclick="location.href='user_msg.php?act=check&check=allow&id={$msg.msg_id}'" value="{$lang.allow}" class="button" />
|
|
{else}
|
|
<input type="button" onclick="location.href='user_msg.php?act=check&check=forbid&id={$msg.msg_id}'" value="{$lang.forbid}" class="button" />
|
|
{/if}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
{if $msg.reply_id}
|
|
<div class="main-div">
|
|
<table width="98%">
|
|
<tr>
|
|
<td style="padding: 0px 20px">
|
|
<h3>{$msg.reply_name} {$lang.from} {$msg.reply_time} {$lang.reply}:</h3>
|
|
<hr size="1" />
|
|
<div>{$msg.reply_content|escape:"html"|nl2br}</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
{/if}
|
|
|
|
{if $send_fail}
|
|
<ul style="padding:0; margin: 0; list-style-type:none; color: #CC0000;">
|
|
<li style="border: 1px solid #CC0000; background: #FFFFCC; padding: 10px; margin-bottom: 5px;" >{$lang.mail_send_fail}</li>
|
|
</ul>
|
|
{/if}
|
|
|
|
<div class="main-div">
|
|
<form method="post" action="user_msg.php?act=action" name="theForm" onsubmit="return validate()">
|
|
<table border="0" width="98%">
|
|
<tr>
|
|
<td>{$lang.email}:</td>
|
|
<td><input name="user_email" id="user_email" type="text" value="{$msg.reply_email}"></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{$lang.reply_content}:</td>
|
|
<td rowspan="2"><textarea name="msg_content" cols="50" rows="4" wrap="VIRTUAL" id="msg_content">{$msg.reply_content}</textarea></td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td>
|
|
<td> </td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td><input name="send_email_notice" type="checkbox" value='1'/>{$lang.send_email_notice}</td>
|
|
</tr>
|
|
{if $msg.reply_id}
|
|
<tr>
|
|
<td> </td>
|
|
<td>{$lang.have_reply_content}</td>
|
|
</tr>
|
|
{/if}
|
|
<tr>
|
|
<td> </td>
|
|
<td>
|
|
<input type="hidden" name="msg_id" value="{$msg.msg_id}">
|
|
<input type="hidden" name="parent_id" value="{$msg.reply_id}">
|
|
<input name="Submit" value="{$lang.button_submit}" type="submit" class="button">
|
|
<input type="reset" value="{$lang.button_reset}" class="button">
|
|
{if $msg.reply_id}<input type="submit" name="remail" value="{$lang.remail}" class="button">{/if}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
{insert_scripts files="../js/utils.js,validator.js"}
|
|
<script language="JavaScript">
|
|
<!--
|
|
{literal}
|
|
document.forms['theForm'].elements['msg_content'].focus();
|
|
|
|
/**
|
|
* 检查表单输入的数据
|
|
*/
|
|
function validate()
|
|
{
|
|
validator = new Validator("theForm");
|
|
validator.required("msg_content", no_reply_content);
|
|
return validator.passed();
|
|
}
|
|
|
|
onload = function()
|
|
{
|
|
// 开始检查订单
|
|
startCheckOrder();
|
|
}
|
|
//-->
|
|
{/literal}
|
|
</script>
|
|
{include file="pagefooter.htm"}
|