98 lines
4.5 KiB
HTML
98 lines
4.5 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-group">
|
|
<input type="text" :placeholder="vc.i18n('请选择开始时间','mqttLog')" v-model="mqttLogInfo.conditions.startTime" class=" form-control startDate">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-3">
|
|
<div class="form-group input-group">
|
|
<input type="text" :placeholder="vc.i18n('请选择结束时间','mqttLog')" v-model="mqttLogInfo.conditions.endTime" class=" form-control endDate">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-1">
|
|
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryMqttLogMethod()">
|
|
<i class="glyphicon glyphicon-search"></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="mqtt日志" namespace="mqttLog"></vc:i18n>
|
|
</h5>
|
|
<div class="ibox-tools" style="top:10px;">
|
|
|
|
</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='mqttLog'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='业务ID' namespace='mqttLog'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='业务' namespace='mqttLog'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='topic' namespace='mqttLog'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='内容' namespace='mqttLog'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='备注' namespace='mqttLog'></vc:i18n>
|
|
</th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="mqttLog in mqttLogInfo.mqttLogs">
|
|
<td class="text-center">{{mqttLog.mqttId}}</td>
|
|
<td class="text-center">{{mqttLog.businessId}}</td>
|
|
<td class="text-center">{{mqttLog.businessKey}}</td>
|
|
<td class="text-center">{{mqttLog.topic}}</td>
|
|
<td class="text-center">
|
|
<div class="textAuto" style="max-width: 200px;">{{mqttLog.context}}</div>
|
|
</td>
|
|
<td class="text-center">{{mqttLog.remark}}</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>
|
|
|
|
</div> |