优化报修

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"> class="form-control carCreateFeeStartTime">
</div> </div>
</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"> <label class="col-sm-2 col-form-label">
<span><vc:i18n name="计费结束时间" namespace="carCreateFeeAdd"></vc:i18n></span> <span><vc:i18n name="计费结束时间" namespace="carCreateFeeAdd"></vc:i18n></span>
</label> </label>

View File

@ -51,13 +51,17 @@
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15"> <table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead> <thead>
<tr> <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> </tr>
</thead> </thead>
<tbody> <tbody>
<tr v-for="(itemData,indexData) in item.data"> <tr v-for="(itemData,indexData) in item.data">
<td class="text-center" v-for="(tmpItemTh,key) in item.th"> <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> </td>
</tr> </tr>
</tbody> </tbody>

View File

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