This commit is contained in:
java110 2021-05-18 23:51:41 +08:00
commit 725ddc7e82
4 changed files with 10 additions and 4 deletions

View File

@ -1,9 +1,9 @@
<div>
<div>
<div>
<div class=" text-center">
<!-- <div class=" text-center">
<h1>合同打印</h1>
</div>
</div> -->
<div class="row margin-top">
<div class="col-sm-12">
<div v-html="printContractInfo.context"></div>

View File

@ -46,8 +46,12 @@
function (json, res) {
let _info = JSON.parse(json);
let _data = _info.data;
//拿到模板内容
$that.templatecontent = _data.contractTypeTemplate[0].context;
// 合同信息
$that.contractdata = _data.contract[0];
//合同属性
$that.attrs = _data.contract[0].attrs;
$that.contractTypeSpec = _data.contractTypeSpec;
$that.contractTypeSpec.forEach(function (e) {
@ -61,7 +65,7 @@
});
});
$that.baseRepalce = _data.baseRepalce;
if ($that.baseRepalce != undefined) {
if ($that.baseRepalce) {
$that.baseRepalce.forEach(function (e) {
let rname = e.name;
let rkey = e.key;

View File

@ -21,7 +21,7 @@
<div class="col-sm-4">
<div class="form-group">
<input type="text" placeholder="请填写车位编号" class=" form-control"
v-model="listOwnerCarInfo.num">
v-model="listOwnerCarInfo.conditions.num">
</div>
</div>
<div class="col-sm-3">

View File

@ -114,6 +114,7 @@
<tr>
<th class="text-center">费用编号</th>
<th class="text-center">房号</th>
<th class="text-center">业主</th>
<th class="text-center">费用项</th>
<th class="text-center">支付方式</th>
<th class="text-center">费用开始时间</th>
@ -132,6 +133,7 @@
<tr v-for="(fee,index) in reportPayFeeDetailInfo.fees">
<td class="text-center">{{index+1}}</td>
<td class="text-center">{{fee.objName}}</td>
<td class="text-center">{{fee.ownerName}}</td>
<td class="text-center">{{fee.feeName}}</td>
<td class="text-center">{{fee.primeRate}}</td>
<td class="text-center">{{vc.dateFormat(fee.startTime)}}</td>