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.
117 lines
3.9 KiB
117 lines
3.9 KiB
<!-- $Id: user_rank_info.htm 15053 2008-10-25 03:07:46Z testyang $ -->
|
|
{include file="pageheader.htm"}
|
|
|
|
<div class="main-div">
|
|
<form action="user_card.php" method="post" name="theForm" onsubmit="return validate()">
|
|
<table width="100%">
|
|
<tr>
|
|
<td class="label">{$lang.card_type_name}: </td>
|
|
<td>{$ct_info.ct_name}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">{$lang.bind_user_name}: </td>
|
|
<td><input type="text" name="user_name" value="{$card.user_name}" maxlength="20" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">{$lang.card_no}: </td>
|
|
<td><input type="text" name="card_no" value="{$card.card_no}" maxlength="20" />{$lang.require_field}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">{$lang.card_level}: </td>
|
|
<td><input type="text" name="card_level" value="{$card.card_level}" maxlength="20" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">{$lang.card_pass}: </td>
|
|
<td><input type="text" name="card_pass" value="{$card.card_pass}" size="10" maxlength="20" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">{$lang.user_money}: </td>
|
|
<td><input type="text" name="user_money" value="{$card.user_money}" size="10" maxlength="20" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">{$lang.pay_points}: </td>
|
|
<td><input type="text" name="pay_points" value="{$card.pay_points}" size="10" maxlength="20" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">{$lang.rank_points}: </td>
|
|
<td><input type="text" name="rank_points" value="{$card.rank_points}" size="10" maxlength="20" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">{$lang.card_true_name}: </td>
|
|
<td><input type="text" name="true_name" value="{$card.true_name}" size="40" maxlength="60" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">{$lang.card_address}: </td>
|
|
<td><input type="text" name="address" value="{$card.address}" size="60" maxlength="255" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">{$lang.card_mobile}: </td>
|
|
<td><input type="text" name="mobile" value="{$card.mobile}" size="40" maxlength="60" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">{$lang.card_email}: </td>
|
|
<td><input type="text" name="email" value="{$card.email}" size="40" maxlength="60" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">{$lang.is_show}: </td>
|
|
<td><input type="radio" name="is_show" value="1" {if $card.is_show}checked="checked"{/if} />{$lang.is_show_1} <input type="radio" name="is_show" value="0" {if not $card.is_show}checked="checked"{/if} />{$lang.is_show_0} </td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">{$lang.send_type}: </td>
|
|
<td><input type="text" name="send_type" value="{$card.send_type}" size="10" maxlength="20" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">{$lang.des}: </td>
|
|
<td><textarea name="des" cols="40" rows="5">{$card.des}</textarea></td>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td colspan="2" align="center">
|
|
<input type="hidden" name="act" value="{$form_action}" />
|
|
<input type="hidden" name="id" value="{$card.id}" />
|
|
<input type="hidden" name="ct_id" value="{$card.ct_id}" />
|
|
<input type="submit" value="{$lang.button_submit}" class="button" />
|
|
<input type="reset" value="{$lang.button_reset}" class="button" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
{insert_scripts files="../js/utils.js,validator.js"}
|
|
{literal}
|
|
<script language="JavaScript">
|
|
<!--
|
|
document.forms['theForm'].elements['rank_name'].focus();
|
|
|
|
onload = function()
|
|
{
|
|
// 开始检查订单
|
|
startCheckOrder();
|
|
}
|
|
|
|
/**
|
|
* 检查表单输入的数据
|
|
*/
|
|
function validate()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
function doSpecial()
|
|
{
|
|
if(document.forms['theForm'].elements['special_rank'].checked)
|
|
{
|
|
document.forms['theForm'].elements['max_points'].disabled = "true";
|
|
document.forms['theForm'].elements['min_points'].disabled = "true";
|
|
}
|
|
else
|
|
{
|
|
document.forms['theForm'].elements['max_points'].disabled = "";
|
|
document.forms['theForm'].elements['min_points'].disabled = "";
|
|
}
|
|
}
|
|
//-->
|
|
</script>
|
|
{/literal}
|
|
{include file="pagefooter.htm"} |