| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- <!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=utf-8" />
- <title>团购商品订单</title>
- <style type="text/css">
- <!--
- body {
- padding: 0px;
- margin-top: 1px;
- margin-left: 1px;
- background:white;
- font-size:12px
- }
- #center {
- width: auto;
- margin-top: 0px;
- margin-right: auto;
- margin-bottom: 0px;
- margin-left: auto;
- }
- .content {
- padding-left: 70px;
- }
- .content_1 {
- float: left;
- width: auto;
- line-height: 24px;
- color: #a7a7aa;
- }
- .content_1 .hj {
- padding-top: 5px;
- padding-bottom: 5px;
- }
- .content_1 strong {
- color: #006acd;
- }
- .content_1 b {
- color: #006acd;
- }
- .content_2 {
- line-height: 24px;
- float: right;
- width: 170px;
- padding-right: 15px;
- color: #006acd;
- margin-top: 20px;
- }
- .content_2 span {
- color: #e91116;
- }
- .clear {clear:both; height:10px; visibility:hidden; overflow: hidden}
- a:hover {
- color: #FF0000;
- }
- .content_11 { float: left;
- width: auto;
- line-height: 24px;
- color: #a7a7aa;
- }
- .cont {
- padding-left: 30px;
- padding-top:10px;
- }
- .cont_1 {
- width: auto;
- line-height: 24px;
- color: #a7a7aa;
- }
- .nr {
- height:auto;
- overflow:auto
- }
- .nr span.l{ display:block; width:350px; }
- .nr span.r{ display:block; width:350px; }
-
- .nr em {
- font-style: normal;
- color: #FF0000;
- }
- .nr b {
- color: #006acd;
- }
- .input0 {
- border: 1px solid #b9cde3;
- height: 22px;
- vertical-align: middle;
- width: 150px;
- line-height: 22px;
- padding-left:5px;
- padding-right:5px;
- }
- textarea {
- border: 1px solid #b9cde3;
- height: 40px;
- width: 436px;
- vertical-align: middle;
- padding-left:5px;
- padding-right:5px;
- }
- input.submit{border:1px solid;cursor:pointer;border-color:#fff #848484 #848484 #fff !important;background:#1B72AF !important;color:#FFFFFF !important; line-height:20px;}
- -->
- </style>
- </head>
- <body>
- <div id="center">
- <script language="javascript">
- function submitForm(){
- if (document.ordergoods.ordernum.value=="") {
- alert('请填写订单数量!');
- document.ordergoods.ordernum.focus();
- return false;
- }
- if (document.ordergoods.oname.value=="") {
- alert('请填写订联系人!');
- document.ordergoods.oname.focus();
- return false;
- }
- if (document.ordergoods.mobile.value=="") {
- alert('请填写手机号码!');
- document.ordergoods.mobile.focus();
- return false;
- }
- return true;
- }
- </script>
- <form onSubmit="return submitForm();" id="ordergoods" action="../goods.php" name="ordergoods" method="post">
- <input name="goodsid" value="<?=$id?>" type="hidden">
- <div class="cont">
-
- <div class="cont_1">
-
- <div class="nr"><b>请填写订单信息</b></div>
- <div class="nr">
- <span class="l">订单数量:</span>
- <span class="r"><input name="ordernum" id="ordernum" type="text" value="1" class="input0" />
- 请填写您要订购的数量(<font color=red>*</font>必填)</span>
- </div>
-
- <div class="nr">
- <span class="l">联系人:</span>
- <span class="r">
- <input name="oname" id="oname" type="text" value="" class="input0" />
- 请填写联系人真实姓名(<font color=red>*</font>必填)
- </span>
- </div>
-
- <div class="nr">
- <span class="l">固定电话:</span>
- <span class="r"><input name="tel" id="tel" type="text" value="" class="input0" />
- 固定电话联系方式 </span>
- </div>
-
- <div class="nr">
- <span class="l">手机号码:</span>
- <span class="r"><input name="mobile" id="mobile" type="text" value="" class="input0" />
- 请填写手机号码(<font color=red>*</font>必填)</span>
- </div>
-
- <div class="nr">
- <span class="l">联系 Q Q:</span>
- <span class="r">
- <input name="qq" id="qq" type="text" value="" class="input0"/>
- 常用网络联系方式</span>
- </div>
-
- <div class="nr">
- <span class="l">联系地址:</span>
- <span class="r">
- <input name="address" id="address" type="text" value="" class="input0"/>
- 精确到门牌号,方便物流配送</span>
- </div>
-
- <div class="nr">
- <span class="l">简短附言:</span>
- <span class="r"><textarea name="msg"></textarea></span>
- </div>
-
- </div>
-
- <div class="clear"></div>
- <div style="width:100%;text-align:left;"><input type="submit" class="submit" value="提交订单" /> <input type="reset" class="submit" value="重新填写"></div>
- </div>
-
- </form>
- </div>
- </body>
- </html>
|