mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-12 10:00:56 +08:00
优化动态单价
This commit is contained in:
parent
0520b9fbe2
commit
0514d3af4e
@ -206,9 +206,9 @@
|
|||||||
errInfo: "计费单价不能为空"
|
errInfo: "计费单价不能为空"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
limit: "money",
|
limit: "moneyModulus",
|
||||||
param: "",
|
param: "",
|
||||||
errInfo: "计费单价格式错误"
|
errInfo: "计费单价格式错误,如1.5000"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
'addFeeConfigInfo.additionalAmount': [
|
'addFeeConfigInfo.additionalAmount': [
|
||||||
@ -218,7 +218,7 @@
|
|||||||
errInfo: "附加费用不能为空"
|
errInfo: "附加费用不能为空"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
limit: "money",
|
limit: "moneyModulus",
|
||||||
param: "",
|
param: "",
|
||||||
errInfo: "附加费用格式错误"
|
errInfo: "附加费用格式错误"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -33,9 +33,18 @@
|
|||||||
</option>
|
</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-lg-1 padding-right-xs padding-left-xl input-group-sm">
|
||||||
|
<input v-model="simplifyFeeReceiptInfo.receiptCode" type="text"
|
||||||
|
:placeholder="vc.i18n('收据编号','simplifyFeeReceipt')" class="form-control ">
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-1 padding-right-xs padding-left-xl">
|
||||||
|
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
|
||||||
|
v-on:click="_queryFeeReceiptMethod()">查询
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
<div class="col-lg-2 padding-right-xs padding-left-xl" v-if="simplifyFeeReceiptInfo.objType != '6666' ">
|
<div class="col-lg-2 padding-right-xs padding-left-xl" v-if="simplifyFeeReceiptInfo.objType != '6666' ">
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-6 text-right padding-right-lg">
|
<div class="col-lg-4 text-right padding-right-lg">
|
||||||
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px" v-on:click="_printFeeReceipt()">打印
|
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px" v-on:click="_printFeeReceipt()">打印
|
||||||
</button>
|
</button>
|
||||||
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px" v-on:click="_printFeeSmallReceipt()">打印小票
|
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px" v-on:click="_printFeeSmallReceipt()">打印小票
|
||||||
|
|||||||
@ -13,6 +13,7 @@
|
|||||||
payObjId: '',
|
payObjId: '',
|
||||||
roomId: '',
|
roomId: '',
|
||||||
carId: '',
|
carId: '',
|
||||||
|
receiptCode:'',
|
||||||
total: '',
|
total: '',
|
||||||
records: '',
|
records: '',
|
||||||
ownerId: '',
|
ownerId: '',
|
||||||
@ -71,12 +72,13 @@
|
|||||||
} else {
|
} else {
|
||||||
_objId = $that.simplifyFeeReceiptInfo.contractId
|
_objId = $that.simplifyFeeReceiptInfo.contractId
|
||||||
}
|
}
|
||||||
var param = {
|
let param = {
|
||||||
params: {
|
params: {
|
||||||
page: _page,
|
page: _page,
|
||||||
row: _rows,
|
row: _rows,
|
||||||
objType: $that.simplifyFeeReceiptInfo.objType,
|
objType: $that.simplifyFeeReceiptInfo.objType,
|
||||||
objId: _objId,
|
objId: _objId,
|
||||||
|
receiptCode:$that.simplifyFeeReceiptInfo.receiptCode,
|
||||||
communityId: vc.getCurrentCommunity().communityId
|
communityId: vc.getCurrentCommunity().communityId
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -158,6 +160,7 @@
|
|||||||
objId: '',
|
objId: '',
|
||||||
roomId: '',
|
roomId: '',
|
||||||
carId: '',
|
carId: '',
|
||||||
|
receiptCode:'',
|
||||||
total: '',
|
total: '',
|
||||||
records: '',
|
records: '',
|
||||||
ownerId: '',
|
ownerId: '',
|
||||||
|
|||||||
@ -4,31 +4,31 @@
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="text-center">
|
<th class="text-center">
|
||||||
<span><vc:i18n name="设备编码" namespace="simplifyOwnerAccessContol"></vc:i18n></span>
|
<vc:i18n name="设备编码" namespace="simplifyOwnerAccessContol"></vc:i18n>
|
||||||
</th>
|
</th>
|
||||||
<th class="text-center">
|
<th class="text-center">
|
||||||
<span><vc:i18n name="设备名称" namespace="simplifyOwnerAccessContol"></vc:i18n></span>
|
<vc:i18n name="设备名称" namespace="simplifyOwnerAccessContol"></vc:i18n>
|
||||||
</th>
|
</th>
|
||||||
<th class="text-center">
|
<th class="text-center">
|
||||||
<span><vc:i18n name="对象类型" namespace="simplifyOwnerAccessContol"></vc:i18n></span>
|
<vc:i18n name="对象类型" namespace="simplifyOwnerAccessContol"></vc:i18n>
|
||||||
</th>
|
</th>
|
||||||
<th class="text-center">
|
<th class="text-center">
|
||||||
<span><vc:i18n name="对象名称" namespace="simplifyOwnerAccessContol"></vc:i18n></span>
|
<vc:i18n name="对象名称" namespace="simplifyOwnerAccessContol"></vc:i18n>
|
||||||
</th>
|
</th>
|
||||||
<th class="text-center">
|
<th class="text-center">
|
||||||
<span><vc:i18n name="指令" namespace="simplifyOwnerAccessContol"></vc:i18n></span>
|
<vc:i18n name="指令" namespace="simplifyOwnerAccessContol"></vc:i18n>
|
||||||
</th>
|
</th>
|
||||||
<th class="text-center">
|
<th class="text-center">
|
||||||
<span><vc:i18n name="状态" namespace="simplifyOwnerAccessContol"></vc:i18n></span>
|
<vc:i18n name="状态" namespace="simplifyOwnerAccessContol"></vc:i18n>
|
||||||
</th>
|
</th>
|
||||||
<th class="text-center">
|
<th class="text-center">
|
||||||
<span><vc:i18n name="说明" namespace="simplifyOwnerAccessContol"></vc:i18n></span>
|
<vc:i18n name="说明" namespace="simplifyOwnerAccessContol"></vc:i18n>
|
||||||
</th>
|
</th>
|
||||||
<th class="text-center">
|
<th class="text-center">
|
||||||
<span><vc:i18n name="同步时间" namespace="simplifyOwnerAccessContol"></vc:i18n></span>
|
<vc:i18n name="同步时间" namespace="simplifyOwnerAccessContol"></vc:i18n>
|
||||||
</th>
|
</th>
|
||||||
<th class="text-center">
|
<th class="text-center">
|
||||||
<span><vc:i18n name="操作" namespace="simplifyOwnerAccessContol"></vc:i18n></span>
|
<vc:i18n name="操作" namespace="simplifyOwnerAccessContol"></vc:i18n>
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user