Browse Source

Merge branch 'develop' of http://101.201.121.115:3000/leo/LAPP_MY_WEBFRONT into feature_meiyuan

feature_meiyuan
lingxiao 2 years ago
parent
commit
c186011b6b
1 changed files with 19 additions and 3 deletions
  1. +19
    -3
      src/components/receiptPrinting.vue

+ 19
- 3
src/components/receiptPrinting.vue View File

@ -4,9 +4,9 @@
<p class="serialnumber">{{ data.contracttab.serialnumber }}</p>
<p class="printSerialNumber">{{ printSerialNumber }}</p>
<p id="details-wrap">
<span style="width: 181px"><e>小区楼名称</e>{{ data.cidName }}</span>
<span style="width: 113px"><e>楼号</e>{{ data.propertyid }}</span>
<span><e>面楼积</e>{{ data.constructionarea }}</span>
<span style="width: 181px" class="cidName"><e>小区楼名称</e>{{ data.cidName }}</span>
<span style="width: 128px" class="propertyid"><e>楼号</e>{{ data.propertyid }}</span>
<span class="constructionarea"><e>面楼积</e>{{ data.constructionarea }}</span>
</p>
<table border="0" style="width: 100%; border-collapse: collapse">
<tr>
@ -190,12 +190,28 @@ span {
right: 70px;
}
#details-wrap {
position: relative;
margin-top: 37px;
margin-bottom: 5px;
}
#details-wrap span {
padding-left: 7px;
}
#details-wrap .cidName{
position: absolute;
left: 0;
line-height: 12px;
}
#details-wrap .propertyid{
position: absolute;
left: 187px;
line-height: 12px;
}
#details-wrap .constructionarea{
position: absolute;
right: 203px;
}
tr,
td,
th {


Loading…
Cancel
Save