MicroCommunityWeb/public/pages/property/smsConfigManage/smsConfigManage.html

73 lines
3.4 KiB
HTML

<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>短信配置</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddSmsConfigModal()">
<i class="glyphicon glyphicon-plus"></i>
配置
</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">短信编号</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">访问KEY</th>
<th class="text-center">区域</th>
<th class="text-center">日志</th>
<th class="text-center">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="smsConfig in smsConfigManageInfo.smsConfigs">
<td class="text-center">{{smsConfig.smsId}}</td>
<td class="text-center">{{smsConfig.smsType}}</td>
<td class="text-center">{{smsConfig.smsBusi}}</td>
<td class="text-center">{{smsConfig.templateCode}}</td>
<td class="text-center">{{smsConfig.signName}}</td>
<td class="text-center">{{smsConfig.accessSecret}}</td>
<td class="text-center">{{smsConfig.accessKeyId}}</td>
<td class="text-center">{{smsConfig.region}}</td>
<td class="text-center">{{smsConfig.logSwitch}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openEditSmsConfigModel(smsConfig)">修改</button>
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="10">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
<vc:create path="property/addSmsConfig" callBackListener="" callBackFunction=""></vc:create>
<vc:create path="property/editSmsConfig"></vc:create>
</div>