Commit ebfda643 authored by linjw's avatar linjw

装修订单样式

parent ddccebdd
......@@ -49,21 +49,54 @@ jQuery(document).ready(function(){
#if($!config.websiteLogo) <a href="$!webPath/index.htm"><img src="$!imageWebServer/$!config.websiteLogo.path/$!config.websiteLogo.name" border="0" /></a>#else<a href="$!webPath/index.htm"><img src="$!imageWebServer/resources/style/system/front/default/images/logo.png" border="0" /></a>#end
</div>
</div>
<table>
#foreach($obj in $area)
<tr>
<td>$obj.areaName</td>
<td> | </td>
#foreach($objc in $obj.childs)
<td><a href="$!webPath/index.htm?id=$objc.id">$objc.areaName</a></td>
#end
</tr>
#end
</table>
<div>
#foreach($obj in $area)
<div class="content-province">
<div class="content-province-title">$obj.areaName</div>
<div class="content-cities">
#foreach($objc in $obj.childs)
<span class="cityName"><a href="$!webPath/index.htm?id=$objc.id">$objc.areaName</a></span>
#end
</div>
</div>
#end
</div>
$!uc_logout_js
</div>
$!httpInclude.include("/footer.htm")
</body>
<style>
.main{
height:2000px;
}
.content-province{
float: left;
width: 1158px;
border: solid 1px #eee;
margin-bottom:5px;
}
.content-province-title{
float: left;
width: 128px;
height: 45px;
line-height: 45px;
padding-left: 16px;
border-width: 1px;
border-color: #eee;
color: #333;
font-size: 15px;
}
.content-cities{
float: left;
width: 1000px;
line-height: 40px;
border-left:solid 1px #eee;
padding-left:10px
}
.cityName{
margin-right:5px;
}
</style>
</html>
......@@ -59,7 +59,7 @@ function search_form(){
</a>
#end
</div>
<div>
<div class="city">
$!cityName <a href="$!webPath/area_list.htm">切换城市</a>
</div>
<div class="searchForm">
......@@ -104,3 +104,10 @@ function search_form(){
</div>
</div>
</div>
<style>
.city{
float: left;
line-height: 100px;
}
</style>
......@@ -50,7 +50,7 @@ jQuery(document).ready(function(){
<li op="account_message"><a href="$!webPath/buyer/account_message.htm">我的消息</a></li>
#end
<!-- <li op="zsh_buyer_cash"><a href="$!webPath/buyer/contract_list.htm">装修订单</a></li> -->
<li op="zsh_buyer_cash"><a href="$!webPath/buyer/contract_list.htm">装修订单</a></li>
</ul>
</li>
</ul>
......
......@@ -55,43 +55,46 @@ $!httpInclude.include("/top.htm")
<div class="productmain">
<form action="$!webPath/buyer/add_detailed_save.htm" method="post" name="theForm" id="theForm">
<div class="ordercon">
<div class="operation">
<table width="800" border="0" cellspacing="0" cellpadding="0" id="opertable" >
<tr>
<td></td>
<td></td>
<td>
<div class="operation order">
<div style="border-bottom:1px solid #ccc;text-align:center;padding:15px">
装修计划表
</td>
<<td></td>
<td></td>
</tr>
<tr>
<td>分佣比例::</td>
<td><input name="commission" type="number" id="commission" />%</td>
</tr>
<tr>
<td>装修工期</td>
<td>水电验收工期:</td>
<td><input name="hydropower" type="text" id="hydropower" /></td>
<td>泥木工验收工期:</td>
<td><input name="mudwood" type="text" id="mudwood" /></td>
</tr>
<tr>
<td></td>
<td>油漆验收工期:</td>
<td><input name="paint" type="text" id="paint" /></td>
<td>竣工工验收工期:</td>
<td><input name="completed" type="text" id="completed" /></td>
</tr>
<tr>
<td class="px10"><span class="setsub">
<input type="hidden" name="id" id="id" value="$!id" />
<input type="button" onclick="saveForm();" value="保存" style="cursor:pointer;"/>
</span></td>
</tr>
</table>
</div>
<div style="padding:30px">
<div style="margin-bottom:30px">
<span style="font-weight:600">分佣比例:</span>&nbsp;&nbsp;&nbsp;
<input name="commission" type="number" id="commission" /> &nbsp;&nbsp;&nbsp;%
</div>
<div class="clearfix">
<div style="float:left">
<span style="font-weight:600;margin-right:20px">装修工期:</span>
</div>
<div style="float:left">
<div style="margin-bottom:20px">
<span>水电验收工期:</span>
<input name="hydropower" type="text" id="hydropower" />&nbsp;&nbsp;&nbsp;&nbsp;
<span>泥木工验收工期:</span>
<input name="mudwood" type="text" id="mudwood" />
</div>
<div>
<span>油漆验收工期:</span>
<input name="paint" type="text" id="paint" />&nbsp;&nbsp;&nbsp;&nbsp;
<span>竣工工验收工期:</span>
<input name="completed" type="text" id="completed" />
</div>
</div>
</div>
<div class="px10 px11">
<span class="setsub">
<input type="hidden" name="id" id="id" value="$!id" />
<input type="button" onclick="saveForm();" value="提交" style="cursor:pointer;"/>
</span>
</div>
</div>
</div>
</div>
</div>
......@@ -102,4 +105,23 @@ $!httpInclude.include("/top.htm")
$!httpInclude.include("/footer.htm")
</div>
</body>
<style>
.clearfix:after{/*伪元素是行内元素 正常浏览器清除浮动方法*/
content: "";
display: block;
height: 0;
clear:both;
visibility: hidden;
}
.clearfix{
*zoom: 1;/*ie6清除浮动的方式 *号只有IE6-IE7执行,其他浏览器不执行*/
}
.order{
border:1px solid #ccc;
margin:20px 0 0 30px;
}
.px11{
text-align:center;
}
</style>
</html>
......@@ -33,13 +33,15 @@ $!httpInclude.include("/top.htm")
<tr> $!httpInclude.include("/buyer/account_nav.htm?op=buyer_cash")
<td id="centerbg" valign="top">
<div class="buyer_position">
<div class="buyer_p_box"><a href="$!webPath/buyer/account.htm">我的账户</a> > <span>装修订单列表</span></div>
<div class="buyer_p_box"><a href="$!webPath/buyer/account.htm">我的账户</a> > <span>装修订单列表</span>
#if($!CommUtil.indexOf("$!user.userRole","ADMIN")>=0)
<span class="allmen size7">
<p class="allmen size7 new">
<a href="$!webPath/buyer/contract_add_detailed.htm" class="blue">新增</a>
</span>
</p>
#end
</div>
</div>
<div class="productmain">
......@@ -110,4 +112,10 @@ $!httpInclude.include("/top.htm")
$!httpInclude.include("/footer.htm")
</div>
</body>
<style>
.new{
display:inline-block;
margin-left:450px
}
</style>
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment