国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
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.

108 lines
4.7KB

  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 href="css/base.css" rel="stylesheet" type="text/css" />
  7. </head>
  8. <style>
  9. .fontOrange { COLOR: #ff4e00}
  10. .npvar { width:90% }
  11. </style>
  12. <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
  13. <center>
  14. <form action="shops_delivery.php" method="post" name="form1">
  15. <input type="hidden" name="do" value="add">
  16. <table width="98%" border="0" cellpadding="0" cellspacing="0" align="center" style="margin-bottom:8px;" >
  17. <tr>
  18. <td>
  19. <table width="100%" border="0" cellpadding="1" cellspacing="1" bgcolor="#cfcfcf" class="sysinfo">
  20. <tr align="center" height="24">
  21. <td height="30" colspan="2" align="left" bgcolor="#EDF9D5" background='images/tbg.gif' style="padding-left:10px;">
  22. <strong>增加一个配送方式</strong>
  23. </td>
  24. </tr>
  25. <tr align="center" height="24" bgcolor="#FFFFFF">
  26. <td width="13%" height="30" align="right" bgcolor="#FFFFFF">
  27. &nbsp;&nbsp;名称:
  28. </td>
  29. <td align="left" bgcolor="#FFFFFF"><input name="dname" style="margin-left:6px;" type="text" id="dname" />
  30. &nbsp;*此处填写配送方式名称</td>
  31. </tr>
  32. <tr align="center" height="24" bgcolor="#ECF8FF">
  33. <td width="13%" height="30" align="right" bgcolor="#FFFFFF">
  34. &nbsp;&nbsp;手续费:
  35. </td>
  36. <td align="left" bgcolor="#FFFFFF">
  37. <input name="price" type="text" id="price" style="margin-left:6px;" value="0.00" size="6" maxlength="6"/>
  38. &nbsp;*发货时所用的手续费,若要收取,请填写(精确到小数位两位)!
  39. </td>
  40. </tr>
  41. <tr align="center" height="24" bgcolor="#ECF8FF">
  42. <td width="13%" height="30" align="right" bgcolor="#FFFFFF">
  43. &nbsp;&nbsp;简要说明:
  44. </td>
  45. <td align="left" bgcolor="#FFFFFF">
  46. <textarea name="des" id="des" style="margin-left:6px;height:50px;width:320px;"></textarea>
  47. &nbsp;最多100个文字内,简要说明一下。
  48. </td>
  49. </tr>
  50. <tr bgcolor="#F3FFDD">
  51. <td height="50" colspan="3" align="center" bgcolor="#FFFFFF">
  52. <table width="200" border="0" cellspacing="1" cellpadding="1">
  53. <tr align="center">
  54. <td>
  55. <input name="imageField" type="submit" value="确认" class='np coolbg' />
  56. </td>
  57. <td align="center">
  58. <input type="reset" name="button" value="重置" class='np coolbg' />
  59. </td>
  60. </tr>
  61. </table>
  62. </td>
  63. </tr>
  64. </table>
  65. </td>
  66. </tr>
  67. </table>
  68. </form>
  69. <form action="shops_delivery.php" method="post" name="form2">
  70. <input type="hidden" name="do" value="edit" />
  71. <table width="98%" border="0" cellpadding="1" cellspacing="1" align="center" class="tbtitle" style="background:#cfcfcf;">
  72. <tr>
  73. <td height="28" colspan="3" align="left" bgcolor="#EDF9D5" background='images/tbg.gif'>
  74. <strong>&nbsp;已有配送方式列表<strong></strong></strong>
  75. </td>
  76. </tr>
  77. <tr bgcolor="#F3FFDD">
  78. <td height="50" colspan="3" align="center" bgcolor="#FFFFFF">
  79. <table width="100%" border="0" cellpadding="1" cellspacing="2" style="BORDER: #CCC 1px solid;">
  80. <?php foreach($deliveryarr as $rs) { ?>
  81. <input type="hidden" name="pid[]" value="<?php echo $rs['pid'];?>" />
  82. <tr>
  83. <td width="23%" height="24" align="left" bgcolor="#F0F0F0" style="padding-left:5px;">
  84. <input name="m_dname<?php echo $rs['pid'];?>" type="text" value="<?php echo $rs['dname'];?>" />
  85. <div style="background-color:#FFFFFF; padding:3px;BORDER-TOP: #CCC 1px solid;"><a href="shops_delivery.php?do=del&id=<?php echo $rs['pid'];?>" onClick="return(confirm('删除后无法恢复,您确定删除吗?'))">删除</a></div>
  86. </td>
  87. <td width="77%" align="left" valign="top" bgcolor="#F0F0F0" style="BORDER-BOTTOM: #CCC 1px solid;padding-left:5px;">
  88. 手续费:
  89. <input name="m_price<?php echo $rs['pid'];?>" type="text" id="m_price<?php echo $rs['pid'];?>" style="margin-left:6px;" value="<?php echo $rs['price'];?>" size="6" maxlength="6"/>
  90. <div style="background-color:#FFFFFF; padding:3px;BORDER-TOP: #CCC 1px solid;"><textarea name="m_des<?php echo $rs['pid'];?>" id="m_des<?php echo $rs['pid'];?>" style="margin-left:6px; width:320px;"><?php echo $rs['des'];?></textarea></div>
  91. </td>
  92. </tr>
  93. <?php }?>
  94. </table>
  95. </td>
  96. </tr>
  97. <tr bgcolor="#F3FFDD">
  98. <td height="36" colspan="3" align="left" bgcolor="#FFFFFF">
  99. <input name="imageField2" type="submit" class="np coolbg" value="修改" />
  100. </td>
  101. </tr>
  102. </table>
  103. </form>
  104. </center>
  105. </body>
  106. </html>