国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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