mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-27 08:29:59 +08:00
123 lines
6.4 KiB
HTML
123 lines
6.4 KiB
HTML
<div>
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="ibox ">
|
|
<div class="ibox-title">
|
|
<h5>
|
|
<span><vc:i18n name="查询条件"></vc:i18n></span>
|
|
</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('请选择名称','chargeMonthCardManage')"
|
|
v-model="chargeMonthCardManageInfo.conditions.cardName" class=" form-control">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-2">
|
|
<button type="button" class="btn btn-primary btn-sm"
|
|
v-on:click="_queryChargeMonthCardMethod()">
|
|
<i class="fa fa-search"></i>
|
|
<span><vc:i18n name="查询"></vc:i18n></span>
|
|
</button>
|
|
<button type="button" class="btn btn-primary btn-sm"
|
|
v-on:click="_resetChargeMonthCardMethod()">
|
|
<i class="fa fa-repeat"></i>
|
|
<span><vc:i18n name="重置"></vc:i18n></span>
|
|
</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="chargeMonthCardManage"></vc:i18n>
|
|
</h5>
|
|
<div class="ibox-tools" style="top:10px;">
|
|
<button type="button" class="btn btn-primary btn-sm" v-on:click="vc.goBack()">
|
|
<i class="fa fa-close"></i>
|
|
<vc:i18n name="返回" namespace="chargeMonthCardManage"></vc:i18n>
|
|
</button>
|
|
<button type="button" class="btn btn-primary btn-sm"
|
|
v-on:click="_openAddChargeMonthCardModal()">
|
|
<i class="fa fa-plus"></i>
|
|
<vc:i18n name="添加" namespace="chargeMonthCardManage"></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='编号' namespace='chargeMonthCardManage'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='名称' namespace='chargeMonthCardManage'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='月' namespace='chargeMonthCardManage'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='月价' namespace='chargeMonthCardManage'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='每日充电小时' namespace='chargeMonthCardManage'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='备注' namespace='chargeMonthCardManage'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='操作'></vc:i18n>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="chargeMonthCard in chargeMonthCardManageInfo.chargeMonthCards">
|
|
<td class="text-center">{{chargeMonthCard.cardId}}</td>
|
|
<td class="text-center">{{chargeMonthCard.cardName}}</td>
|
|
<td class="text-center">{{chargeMonthCard.cardMonth}}</td>
|
|
<td class="text-center">{{chargeMonthCard.cardPrice}}</td>
|
|
<td class="text-center">{{chargeMonthCard.dayHours}}</td>
|
|
<td class="text-center">{{chargeMonthCard.remark}}</td>
|
|
<td class="text-center">
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openEditChargeMonthCardModel(chargeMonthCard)">
|
|
<span><vc:i18n name='修改'></vc:i18n></span>
|
|
</button>
|
|
</div>
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openDeleteChargeMonthCardModel(chargeMonthCard)">
|
|
<span><vc:i18n name='删除'></vc:i18n></span>
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="7">
|
|
<ul class="pagination float-right"></ul>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<vc:create path="frame/pagination"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<vc:create path="machine/addChargeMonthCard" callBackListener="" callBackFunction=""></vc:create>
|
|
<vc:create path="machine/editChargeMonthCard"></vc:create>
|
|
<vc:create path="machine/deleteChargeMonthCard"></vc:create>
|
|
</div> |