Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/pages/property/smsConfigManage/smsConfigManage.html
2025-12-09 20:22:03 +08:00

89 lines
4.8 KiB
HTML

<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>
<span><vc:i18n name="短信配置" namespace="smsConfigManage"></vc:i18n></span>
</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddSmsConfigModal()">
<i class="fa fa-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">
<span><vc:i18n name="短信编号" namespace="smsConfigManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="短信商" namespace="smsConfigManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="短信业务" namespace="smsConfigManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="短信模板" namespace="smsConfigManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="短信签名" namespace="smsConfigManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="短信秘钥" namespace="smsConfigManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="访问" namespace="smsConfigManage"></vc:i18n></span>KEY
</th>
<th class="text-center">
<span><vc:i18n name="区域" namespace="smsConfigManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="日志" namespace="smsConfigManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="操作" namespace="smsConfigManage"></vc:i18n></span>
</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)">
<span><vc:i18n name="修改" namespace="smsConfigManage"></vc:i18n></span>
</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>