| @@ -62,82 +62,13 @@ | |||
| @current-change="handleCurrentChange" | |||
| > | |||
| <template slot-scope="{ row }" slot="menu"> | |||
| <i class="el-icon-video-play" @click="openPlayer(row)" style="font-size:20px;cursor: pointer;"></i> | |||
| <i | |||
| class="el-icon-video-play" | |||
| @click="openPlayer(row)" | |||
| style="font-size: 20px; cursor: pointer" | |||
| ></i> | |||
| </template> | |||
| </avue-crud> | |||
| <!-- <el-table | |||
| :data="tableData" | |||
| stripe | |||
| ref="table" | |||
| height="527px" | |||
| style="width: 100%"> | |||
| <el-table-column | |||
| type="selection" | |||
| width="55"> | |||
| </el-table-column> | |||
| <el-table-column | |||
| prop="username" | |||
| label="用户名" | |||
| align="center" | |||
| > | |||
| </el-table-column> | |||
| <el-table-column | |||
| prop="sourceCode" | |||
| label="录音来源" | |||
| align="center" | |||
| > | |||
| <template slot-scope="scope"> | |||
| <span v-if="scope.row.sourceCode==2">SIM设备</span> | |||
| <span v-if="scope.row.sourceCode==6">wifi设备</span> | |||
| </template> | |||
| </el-table-column> | |||
| <el-table-column | |||
| prop="imei" | |||
| label="设备编号" | |||
| align="center"> | |||
| </el-table-column> | |||
| <el-table-column | |||
| prop="recordDuration" | |||
| label="录音时长" | |||
| align="center"> | |||
| </el-table-column> | |||
| <el-table-column | |||
| prop="recordEndTime" | |||
| label="录音结束时间" | |||
| align="center" | |||
| > | |||
| </el-table-column> | |||
| <el-table-column | |||
| prop="receptionTime" | |||
| label="文件上传时间" | |||
| align="center" | |||
| > | |||
| </el-table-column> | |||
| <el-table-column | |||
| label="操作" | |||
| width="100"> | |||
| <template slot-scope="scope"> | |||
| <i class="el-icon-video-play" @click="openPlayer(scope.row)" style="font-size:20px;cursor: pointer;"></i> | |||
| </template> | |||
| </el-table-column> | |||
| </el-table> | |||
| <div style="display: flex;justify-content:flex-end;margin-top: 10px;"> | |||
| <el-pagination | |||
| @size-change="handleSizeChange" | |||
| @current-change="handleCurrentChange" | |||
| :current-page="current" | |||
| :page-sizes="[10, 30, 50]" | |||
| :page-size="size" | |||
| layout="total, sizes, prev, pager, next, jumper" | |||
| :total="total"> | |||
| </el-pagination> | |||
| </div> --> | |||
| </div> | |||
| <el-dialog title="播放文件" :visible.sync="playerShow" @close="closeAudio"> | |||