优化费用信息

This commit is contained in:
java110 2020-12-15 19:13:36 +08:00
parent a561ef1af8
commit 690d3334d8
3 changed files with 12 additions and 8 deletions

View File

@ -20,7 +20,11 @@
<select class="custom-select" v-model="attrSpecManageInfo.conditions.tableName">
<option selected value="">请选择表名</option>
<option value="building_room_attr">房屋属性</option>
</select> </div>
<option value="building_owner_attr">业主属性</option>
<option value="building_community_attr">小区属性</option>
<option value="machine_attr">设备属性</option>
</select>
</div>
<div class="col-sm-3">
<div class="form-group">
<input type="text" placeholder="请输入规格" v-model="attrSpecManageInfo.conditions.specCd"
@ -58,7 +62,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>
<th class="text-center">值类型</th>

View File

@ -21,7 +21,6 @@
<th class="text-center">费用类型</th>
<th class="text-center">费用项目</th>
<th class="text-center">费用标识</th>
<th class="text-center">出账类型</th>
<th class="text-center">费用ID</th>
<th class="text-center">计费起始时间</th>
<th class="text-center">计费结束时间</th>
@ -37,7 +36,6 @@
<td class="text-center">{{oweFee.feeTypeCdName}}</td>
<td class="text-center">{{oweFee.feeName}}</td>
<td class="text-center">{{oweFee.feeFlagName}}</td>
<td class="text-center">{{oweFee.billTypeName}}</td>
<td class="text-center">{{oweFee.feeId}}</td>
<td class="text-center">{{oweFee.endTime}}</td>
<td class="text-center">{{oweFee.deadlineTime}}</td>

View File

@ -12,7 +12,7 @@
payObjId: '',
payObjType: '',
roomName: '',
receiptId:''
receiptId: ''
}
},
watch: {
@ -82,7 +82,9 @@
if (_item == _oweFeeItem.feeId) {
_fees.push({
feeId: _item,
feePrice: _oweFeeItem.feePrice
startTime: _oweFeeItem.endTime,
endTime: _oweFeeItem.deadlineTime,
receivedAmount: _oweFeeItem.feePrice
});
_printFees.push({
feeId: _item,
@ -103,7 +105,7 @@
fees: _fees
}
vc.http.apiPost(
'/feeApi/payOweFee',
'/fee.payOweFee',
JSON.stringify(_data),
{
emulateJSON: true
@ -164,7 +166,7 @@
vc.goBack();
},
_printOwnOrder: function () {
vc.saveData('java110_printFee',$that.owePayFeeOrderInfo.oweFees);
vc.saveData('java110_printFee', $that.owePayFeeOrderInfo.oweFees);
//打印催交单
window.open('/print.html#/pages/property/printOweFee?roomId=' + $that.owePayFeeOrderInfo.payObjId)
}