mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-12 10:00:56 +08:00
Merge branch 'master' of http://git.homecommunity.cn/supervip/MicroCommunityWeb
This commit is contained in:
commit
725ddc7e82
@ -1,9 +1,9 @@
|
|||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
<div class=" text-center">
|
<!-- <div class=" text-center">
|
||||||
<h1>合同打印</h1>
|
<h1>合同打印</h1>
|
||||||
</div>
|
</div> -->
|
||||||
<div class="row margin-top">
|
<div class="row margin-top">
|
||||||
<div class="col-sm-12">
|
<div class="col-sm-12">
|
||||||
<div v-html="printContractInfo.context"></div>
|
<div v-html="printContractInfo.context"></div>
|
||||||
|
|||||||
@ -46,8 +46,12 @@
|
|||||||
function (json, res) {
|
function (json, res) {
|
||||||
let _info = JSON.parse(json);
|
let _info = JSON.parse(json);
|
||||||
let _data = _info.data;
|
let _data = _info.data;
|
||||||
|
//拿到模板内容
|
||||||
$that.templatecontent = _data.contractTypeTemplate[0].context;
|
$that.templatecontent = _data.contractTypeTemplate[0].context;
|
||||||
|
// 合同信息
|
||||||
$that.contractdata = _data.contract[0];
|
$that.contractdata = _data.contract[0];
|
||||||
|
|
||||||
|
//合同属性
|
||||||
$that.attrs = _data.contract[0].attrs;
|
$that.attrs = _data.contract[0].attrs;
|
||||||
$that.contractTypeSpec = _data.contractTypeSpec;
|
$that.contractTypeSpec = _data.contractTypeSpec;
|
||||||
$that.contractTypeSpec.forEach(function (e) {
|
$that.contractTypeSpec.forEach(function (e) {
|
||||||
@ -61,7 +65,7 @@
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
$that.baseRepalce = _data.baseRepalce;
|
$that.baseRepalce = _data.baseRepalce;
|
||||||
if ($that.baseRepalce != undefined) {
|
if ($that.baseRepalce) {
|
||||||
$that.baseRepalce.forEach(function (e) {
|
$that.baseRepalce.forEach(function (e) {
|
||||||
let rname = e.name;
|
let rname = e.name;
|
||||||
let rkey = e.key;
|
let rkey = e.key;
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<div class="col-sm-4">
|
<div class="col-sm-4">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<input type="text" placeholder="请填写车位编号" class=" form-control"
|
<input type="text" placeholder="请填写车位编号" class=" form-control"
|
||||||
v-model="listOwnerCarInfo.num">
|
v-model="listOwnerCarInfo.conditions.num">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-3">
|
<div class="col-sm-3">
|
||||||
|
|||||||
@ -114,6 +114,7 @@
|
|||||||
<tr>
|
<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>
|
<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">
|
<tr v-for="(fee,index) in reportPayFeeDetailInfo.fees">
|
||||||
<td class="text-center">{{index+1}}</td>
|
<td class="text-center">{{index+1}}</td>
|
||||||
<td class="text-center">{{fee.objName}}</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.feeName}}</td>
|
||||||
<td class="text-center">{{fee.primeRate}}</td>
|
<td class="text-center">{{fee.primeRate}}</td>
|
||||||
<td class="text-center">{{vc.dateFormat(fee.startTime)}}</td>
|
<td class="text-center">{{vc.dateFormat(fee.startTime)}}</td>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user