优化报表专家

This commit is contained in:
java110 2021-03-19 23:18:30 +08:00
parent 6594a4b503
commit 406c75df91
3 changed files with 23 additions and 11 deletions

View File

@ -31,7 +31,9 @@
<tr v-for="(item,index) in printPayFeeInfo.fees" class="vc-table-border">
<th scope="row" class="text-center">{{index +1}}</th>
<td class="text-center">{{item.feeName}}</td>
<td class="text-center">{{vc.dateFormat(item.startTime)}}至{{vc.dateSubOneDay(vc.dateFormat(item.startTime),vc.dateFormat(item.endTime),item.feeFlag)}}</td>
<td class="text-center">
{{vc.dateFormat(item.startTime)}}至{{vc.dateSubOneDay(vc.dateFormat(item.startTime),vc.dateFormat(item.endTime),item.feeFlag)}}
</td>
<!--<td class="text-center">{{item.startTime}}至{{item.endTime}}</td>-->
<td class="text-center">{{item.cycle}}</td>
<td class="text-center">{{item.squarePrice}}</td>
@ -61,7 +63,16 @@
</tbody>
</table>
</div>
<div id="print-btn">
<div class="row">
<div class="col-md-8">
<div class="row">
<div class="col-md-3">部门负责人:</div>
<div class="col-md-3">经办人:</div>
<div class="col-md-3">财务收款:</div>
<div class="col-md-3">客户确认:</div>
</div>
</div>
<div class="col-md-4" id="print-btn">
<button class="btn btn-primary float-right" type="button" v-on:click="_printPurchaseApplyDiv()">
<i class="fa fa-check"></i>&nbsp;打印
</button>
@ -70,4 +81,5 @@
</button>
</div>
</div>
</div>
</div>

View File

@ -68,9 +68,9 @@
</div>
<div class="col-sm-3">
<div class="form-group">
<!-- @click="_changeReporficientConfigId()"-->
<select class="form-control-md form-control input-s-sm inline"
v-model="reportProficientInfo.conditions.configId"
@click="_changeReporficientConfigId()">
v-model="reportProficientInfo.conditions.configId">
<option selected value="">请选择收费项</option>
<option v-for="(item,index) in reportProficientInfo.feeConfigDtos" :key="index"
:value="item.configId">

View File

@ -223,7 +223,7 @@
vc.component.reportProficientInfo.feeConfigDtos = _feeConfigs;
if (_feeConfigs.length > 0) {
$that.reportProficientInfo.conditions.configId = _feeConfigs[0].configId;
$that.changeTab($that.reportProficientInfo._currentTab)
//$that.changeTab($that.reportProficientInfo._currentTab)
}
},
function (errInfo, error) {