Files
Anfioo be079067e6 version9
4
2026-01-14 11:39:11 +08:00

71 lines
3.5 KiB
HTML

<div>
<div class="row">
<div class="col-md-1 padding-r-0">
<div class=" border-radius ">
<div class="margin-xs-r treeview ">
<ul class="list-group text-center border-radius">
<li class="list-group-item node-orgTree " v-for="(item,index) in telSmsLogInfo.machines"
:key="index" @click="_swatchMachine(item)"
:class="{'vc-node-selected':telSmsLogInfo.conditions.machineId == item.machineId}">
{{item.machineName}}
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-11">
<div class="ibox">
<div class="ibox-title">
<h5>
<vc:i18n name="通话记录" namespace="telSmsLog"></vc:i18n>
</h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content ibox-content-auto-height">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">
<vc:i18n name='呼叫类型' namespace='telSmsLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='状态' namespace='telSmsLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='电话号' namespace='telSmsLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='通话内容' namespace='telSmsLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='操作人' namespace='telSmsLog'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='创建时间' namespace='telSmsLog'></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="telSmsLog in telSmsLogInfo.telSmsLogs">
<td class="text-center">{{telSmsLog.callType == 'CALL_IN'?'接受':'发出'}}</td>
<td class="text-center">{{telSmsLog.state}}</td>
<td class="text-center">{{telSmsLog.tel}}</td>
<td class="text-center">{{telSmsLog.smsContent}}</td>
<td class="text-center">{{telSmsLog.voicePath}}</td>
<td class="text-center">{{telSmsLog.personName}}</td>
<td class="text-center">{{telSmsLog.createTime}}</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
</div>