mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-12 10:00:56 +08:00
本地代码暂存
This commit is contained in:
parent
29d97ba5f0
commit
70fa9c5455
@ -4,11 +4,10 @@
|
|||||||
<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>
|
||||||
<th class="text-center">停车时间(小时)</th>
|
<th class="text-center">停车时间</th>
|
||||||
<th class="text-center">收费金额</th>
|
<th class="text-center">收费金额</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@ -17,9 +16,9 @@
|
|||||||
<td class="text-center">{{carIn.inoutId}}</td>
|
<td class="text-center">{{carIn.inoutId}}</td>
|
||||||
<td class="text-center">{{carIn.stateName}}</td>
|
<td class="text-center">{{carIn.stateName}}</td>
|
||||||
<td class="text-center">{{carIn.carNum}}</td>
|
<td class="text-center">{{carIn.carNum}}</td>
|
||||||
<td class="text-center">{{carIn.carNum}}</td>
|
|
||||||
<td class="text-center">{{carIn.inTime}}</td>
|
<td class="text-center">{{carIn.inTime}}</td>
|
||||||
<td class="text-center">{{carIn.outTime}}</td>
|
<td class="text-center" v-if="carIn.state != '100500'">-</td>
|
||||||
|
<td class="text-center" v-else>{{carIn.outTime}}</td>
|
||||||
<td class="text-center">{{carIn.inHours}}小时{{carIn.inMin}}分</td>
|
<td class="text-center">{{carIn.inHours}}小时{{carIn.inMin}}分</td>
|
||||||
<td class="text-center">{{carIn.outTime}}</td>
|
<td class="text-center">{{carIn.outTime}}</td>
|
||||||
<td class="text-center">{{carIn.amount}}</td>
|
<td class="text-center">{{carIn.amount}}</td>
|
||||||
@ -35,5 +34,5 @@
|
|||||||
</tfoot>
|
</tfoot>
|
||||||
</table>
|
</table>
|
||||||
<!-- 分页 -->
|
<!-- 分页 -->
|
||||||
<vc:create path="frame/paginationPlus" namespace="parkingAreaControlInCar"></vc:create>
|
<vc:create path="frame/paginationPlus" namespace="parkingAreaControlCarInouts"></vc:create>
|
||||||
</div>
|
</div>
|
||||||
@ -2,21 +2,57 @@
|
|||||||
入驻小区
|
入驻小区
|
||||||
**/
|
**/
|
||||||
(function (vc) {
|
(function (vc) {
|
||||||
|
var DEFAULT_PAGE = 1;
|
||||||
|
var DEFAULT_ROWS = 10;
|
||||||
vc.extends({
|
vc.extends({
|
||||||
data: {
|
data: {
|
||||||
parkingAreaControlCarInoutsInfo: {
|
parkingAreaControlCarInoutsInfo: {
|
||||||
carIns: []
|
carIns: [],
|
||||||
|
paId: '',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
_initMethod: function () {
|
_initMethod: function () {
|
||||||
|
|
||||||
},
|
},
|
||||||
_initEvent: function () {
|
_initEvent: function () {
|
||||||
|
vc.on('parkingAreaControlCarInouts', 'switch', function (_data) {
|
||||||
|
$that.parkingAreaControlCarInoutsInfo.paId = _data.paId;
|
||||||
|
$that._loadParkingAreaControlCarInouts(DEFAULT_PAGE, DEFAULT_ROWS);
|
||||||
|
});
|
||||||
|
vc.on('parkingAreaControlCarInouts', 'paginationPlus', 'page_event',
|
||||||
|
function (_currentPage) {
|
||||||
|
vc.component._loadParkingAreaControlCarInouts(_currentPage, DEFAULT_ROWS);
|
||||||
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
||||||
|
_loadParkingAreaControlCarInouts: function (_page,_row) {
|
||||||
|
let param = {
|
||||||
|
params: {
|
||||||
|
page: _page,
|
||||||
|
row: _row,
|
||||||
|
communityId: vc.getCurrentCommunity().communityId,
|
||||||
|
paId: $that.parkingAreaControlCarInoutsInfo.paId,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
//发送get请求
|
||||||
|
vc.http.apiGet('/carInoutDetail.listCarInoutDetail',
|
||||||
|
param,
|
||||||
|
function (json) {
|
||||||
|
let _feeConfigInfo = JSON.parse(json);
|
||||||
|
vc.component.parkingAreaControlCarInoutsInfo.total = _feeConfigInfo.total;
|
||||||
|
vc.component.parkingAreaControlCarInoutsInfo.records = _feeConfigInfo.records;
|
||||||
|
vc.component.parkingAreaControlCarInoutsInfo.carIns = _feeConfigInfo.data;
|
||||||
|
vc.emit('parkingAreaControlCarInouts', 'paginationPlus', 'init', {
|
||||||
|
total: _feeConfigInfo.records,
|
||||||
|
currentPage: _page
|
||||||
|
});
|
||||||
|
}, function () {
|
||||||
|
console.log('请求失败处理');
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
})(window.vc);
|
})(window.vc);
|
||||||
@ -23,7 +23,6 @@
|
|||||||
<div class="col-sm-4">
|
<div class="col-sm-4">
|
||||||
<select class="custom-select" v-model="payFeeAuditManageInfo.conditions.state"
|
<select class="custom-select" v-model="payFeeAuditManageInfo.conditions.state"
|
||||||
placeholder="请选择状态">
|
placeholder="请选择状态">
|
||||||
<option value="" selected>请选择状态</option>
|
|
||||||
<option value="1010">待审核</option>
|
<option value="1010">待审核</option>
|
||||||
<option value="2020">审核通过</option>
|
<option value="2020">审核通过</option>
|
||||||
<option value="3030">审核未通过</option>
|
<option value="3030">审核未通过</option>
|
||||||
|
|||||||
@ -19,7 +19,7 @@
|
|||||||
startTime: '',
|
startTime: '',
|
||||||
endTime: '',
|
endTime: '',
|
||||||
userCode: '',
|
userCode: '',
|
||||||
state: '',
|
state: '1010',
|
||||||
payerObjId: ''
|
payerObjId: ''
|
||||||
},
|
},
|
||||||
curPayFee: {}
|
curPayFee: {}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user