130 lines
7.2 KiB
HTML
130 lines
7.2 KiB
HTML
<div>
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="ibox ">
|
|
<div class="ibox-title">
|
|
<h5>
|
|
<vc:i18n name="查询条件" namespace="tempCarFeeConfig"></vc:i18n>
|
|
</h5>
|
|
<div class="ibox-tools" style="top:10px;"></div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<div class="row">
|
|
<div class="col-sm-3">
|
|
<div class="form-group">
|
|
<input type="text" :placeholder="vc.i18n('请输入标准名称','tempCarFeeConfig')"
|
|
v-model="tempCarFeeConfigInfo.conditions.feeName" class=" form-control">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<div class="form-group">
|
|
<input type="text" :placeholder="vc.i18n('请输入停车场','tempCarFeeConfig')"
|
|
v-model="tempCarFeeConfigInfo.conditions.areaNum" class=" form-control">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-3">
|
|
<select class="custom-select" v-model="tempCarFeeConfigInfo.conditions.carType">
|
|
<option selected value="">{{vc.i18n('请选择车辆类型','tempCarFeeConfig')}}</option>
|
|
<option v-for="(item,index) in tempCarFeeConfigInfo.carTypes" :key="index"
|
|
:value="item.statusCd">{{item.name}}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
<div class="col-sm-2">
|
|
<button type="button" class="btn btn-primary btn-sm"
|
|
v-on:click="_queryTempCarFeeConfigMethod()">
|
|
<vc:i18n name="查询" namespace="tempCarFeeConfig"></vc:i18n>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="ibox">
|
|
<div class="ibox-title">
|
|
<h5>
|
|
<vc:i18n name="收费信息" namespace="tempCarFeeConfig"></vc:i18n>
|
|
</h5>
|
|
<div class="ibox-tools" style="top:10px;">
|
|
<button type="button" class="btn btn-primary btn-sm"
|
|
v-on:click="_openAddTempCarFeeConfigModal()">
|
|
<vc:i18n name="添加" namespace="tempCarFeeConfig"></vc:i18n>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center">
|
|
<vc:i18n name="标准ID" namespace="tempCarFeeConfig"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="标准名称" namespace="tempCarFeeConfig"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="停车场" namespace="tempCarFeeConfig"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="车辆类型" namespace="tempCarFeeConfig"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="收费规则" namespace="tempCarFeeConfig"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="开始时间" namespace="tempCarFeeConfig"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="结束时间" namespace="tempCarFeeConfig"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="操作" namespace="tempCarFeeConfig"></vc:i18n>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="tempCarFeeConfig in tempCarFeeConfigInfo.tempCarFeeConfigs">
|
|
<td class="text-center">{{tempCarFeeConfig.configId}}</td>
|
|
<td class="text-center">{{tempCarFeeConfig.feeName}}</td>
|
|
<td class="text-center">{{tempCarFeeConfig.areaNum}}</td>
|
|
<td class="text-center">{{tempCarFeeConfig.carTypeName}}</td>
|
|
<td class="text-center">{{tempCarFeeConfig.ruleName}}</td>
|
|
<td class="text-center">{{tempCarFeeConfig.startTime}}</td>
|
|
<td class="text-center">{{tempCarFeeConfig.endTime}}</td>
|
|
<td class="text-center">
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openEditTempCarFeeConfigModel(tempCarFeeConfig)">
|
|
<vc:i18n name="修改" namespace="tempCarFeeConfig"></vc:i18n>
|
|
</button>
|
|
</div>
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openDeleteTempCarFeeConfigModel(tempCarFeeConfig)">
|
|
<vc:i18n name="删除" namespace="tempCarFeeConfig"></vc:i18n>
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="8">
|
|
<ul class="pagination float-right"></ul>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<vc:create path="frame/pagination"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<vc:create path="car/addTempCarFeeConfig" callBackListener="" callBackFunction=""></vc:create>
|
|
<vc:create path="car/editTempCarFeeConfig"></vc:create>
|
|
<vc:create path="car/deleteTempCarFeeConfig"></vc:create>
|
|
</div> |