MicroCommunityWeb/public/pages/property/carStructure/carStructure.html
2022-06-24 12:49:58 +08:00

22 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div>
<div class="row">
<div class="col-md-2">
<vc:create path="property/floorUnitTree" callBackListener="carStructure"></vc:create>
</div>
<div class="col-md-10 margin-bottom">
<div class="row margin-top-xs bg-white border-radius">
<div class="col-md-1 text-center margin-sm padding-xs" title="vc.i18n('双击查看详情','carStructure')" @dblclick="_toSimplifyAcceptance(car)" v-for="(car,index) in carStructureInfo.cars" :style="{'background-color': _getBgColor(car)}" style="color: #fff;border-radius: 5px;cursor:pointer">
<div>{{car.areaNum}}-{{car.num}}</div>
<div>{{car.carNum}}</div>
<div>{{car.floorNum}}-{{car.unitNum}}-{{car.roomNum}}</div>
<div>{{car.ownerName?car.ownerName:'无'}}</div>
<div><span><vc:i18n name="欠费" namespace="carStructure"></vc:i18n></span>{{car.oweAmount}}<span><vc:i18n name="元" namespace="carStructure"></vc:i18n></span></div>
</div>
</div>
</div>
</div>
</div>