cards_make.htm
3.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
<title>点卡生成向导</title>
<link href="css/base.css" rel="stylesheet" type="text/css" />
</head>
<body background='images/allbg.gif' leftmargin='8' topmargin='8'>
<table width="98%" border="0" cellpadding="1" cellspacing="1" align="center" class="tbtitle" style=" background:#CFCFCF;">
<form action="cards_make.php" name="form1" target="stafrm">
<input type="hidden" name="dopost" value="make" />
<tr>
<td height="20" bgcolor="#EDF9D5" background='images/tbg.gif'>
<table width="98%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="30%" style="padding-left:10px;"><strong>点卡生成向导:</strong> </td>
<td align="right">
<input type="button" name="ss1" value="点卡产品分类" style="width:90px;margin-right:6px" onClick="location='cards_type.php';" class='np coolbg' />
<input type="button" name="ss2" value="点卡使用记录" style="width:90px" onClick="location='cards_manage.php';" class='np coolbg' />
</td>
</tr>
</table></td>
</tr>
<tr>
<td bgcolor="#FFFFFF">
<table width="90%" border="0" cellpadding="2" cellspacing="2">
<tr>
<td width="90">点卡类型:</td>
<td>
<select name='cardtype' style='width:120px'>
<?php
$dsql->SetQuery("Select * From #@__moneycard_type");
$dsql->Execute();
while($row=$dsql->GetArray()){
echo " <option value='{$row['tid']}'>{$row['pname']}</option>\r\n";
}
$dsql->Close();
?>
</select>
</td>
<td width="90">生成数量:</td>
<td>
<input name="mnum" type="text" id="mnum" style='width:120px' value="100" class='pubinputs' />
</td>
</tr>
<tr>
<td>点卡前缀:</td>
<td>
<input name="snprefix" type="text" id="snprefix" style='width:120px' value="SN" class='pubinputs'/>
</td>
<td>密码长度:</td>
<td><input name="pwdlen" type="text" id="pwdlen" style='width:120px' value="4" class='pubinputs' />
</td>
</tr>
<tr>
<td>密码类型:</td>
<td><input type="radio" name="ctype" value="1" class='np' />
纯数字
<input name="ctype" type="radio" value="2" checked='1' class='np' />
大写字母</td>
<td>密码组数:</td>
<td><input name="pwdgr" type="text" id="pwdgr" style='width:120px' value="3" class='np' />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="31" bgcolor="#ffffff" align="center">
<input type="submit" name="Submit" value="开始生成点卡" class='np coolbg' />
</td>
</tr>
</form>
<tr bgcolor="#F9FCEF">
<td height="20"> <table width="100%">
<tr>
<td width="74%"><strong>结果:</strong></td>
<td width="26%" align="right"> <script language='javascript'>
function ResizeDiv(obj,ty)
{
if(ty=="+") document.all[obj].style.pixelHeight += 50;
else if(document.all[obj].style.pixelHeight>80) document.all[obj].style.pixelHeight = document.all[obj].style.pixelHeight - 50;
}
</script>
[<a href='#' onClick="ResizeDiv('mdv','+');">增大</a>] [<a href='#' onClick="ResizeDiv('mdv','-');">缩小</a>]
</td>
</tr>
</table></td>
</tr>
<tr bgcolor="#FFFFFF">
<td id="mtd">
<div id='mdv' style='width:100%;height:350px;'>
<iframe name="stafrm" frameborder="0" id="stafrm" width="100%" height="100%"></iframe>
</div>
</td>
</tr>
</table>
</body>
</html>