mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-26 16:19:44 +08:00
51 lines
2.0 KiB
HTML
51 lines
2.0 KiB
HTML
<div class=" margin-top">
|
|
<div class="text-left">
|
|
<button type="button" class="btn btn-primary btn-sm"
|
|
v-on:click="_openAddMarketRuleObjModal()">
|
|
<span>
|
|
<vc:i18n name="关联对象"></vc:i18n>
|
|
</span>
|
|
</button>
|
|
</div>
|
|
<table class="footable table table-stripped toggle-arrow-tiny margin-top" data-page-size="15">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center"><span>
|
|
<vc:i18n name='对象名称' namespace='marketRuleObj'></vc:i18n>
|
|
</span></th>
|
|
<th class="text-center"><span>
|
|
<vc:i18n name='备注' namespace='marketRuleObj'></vc:i18n>
|
|
</span></th>
|
|
<th class="text-center"><span>
|
|
<vc:i18n name='操作'></vc:i18n>
|
|
</span></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="marketRuleObj in marketRuleObjInfo.marketRuleObjs">
|
|
<td class="text-center">{{marketRuleObj.objTypeName}}</td>
|
|
<td class="text-center">{{marketRuleObj.remark}}</td>
|
|
<td class="text-center">
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs" v-on:click="_openDeleteMarketRuleObjModel(marketRuleObj)"><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> -->
|
|
<vc:create path="frame/paginationPlus" namespace="roleObjInfo"></vc:create>
|
|
<vc:create path="admin/addMarketRuleObj"
|
|
callBackListener=""
|
|
callBackFunction=""
|
|
></vc:create>
|
|
<vc:create path="admin/deleteMarketRuleObj"></vc:create>
|
|
</div> |