优化报修

This commit is contained in:
Your Name 2023-01-09 16:25:36 +08:00
parent ca7ff5f3d6
commit 13f19fff4e
3 changed files with 11 additions and 4 deletions

View File

@ -106,7 +106,7 @@
class="form-control carCreateFeeStartTime">
</div>
</div>
<div class="form-group row" v-show="carCreateFeeAddInfo.feeFlag == '2006012'">
<div class="form-group row" v-show="carCreateFeeAddInfo.feeFlag != '1003006'">
<label class="col-sm-2 col-form-label">
<span><vc:i18n name="计费结束时间" namespace="carCreateFeeAdd"></vc:i18n></span>
</label>

View File

@ -51,13 +51,17 @@
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center" v-for="(itemTh,indexTh) in item.th"> {{itemTh}}</th>
<th class="text-center" v-for="(itemTh,indexTh) in item.th">
<div style="max-width: 200px;"> {{itemTh}}</div></th>
</tr>
</thead>
<tbody>
<tr v-for="(itemData,indexData) in item.data">
<td class="text-center" v-for="(tmpItemTh,key) in item.th">
{{itemData[tmpItemTh]}}
<!--:title="itemData[tmpItemTh]"-->
<div class="textAuto" style="max-width: 200px;">
{{itemData[tmpItemTh]}}
</div>
</td>
</tr>
</tbody>

View File

@ -974,4 +974,7 @@ nav-link nav-link-breadcrumb active:active {
.tree-div::-webkit-scrollbar {
display: none;
}
}
.textAuto{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.textAuto:hover{overflow:visible;text-overflow:ellipsis;white-space:normal;}