|
@@ -44,9 +44,9 @@
|
|
|
<!--视频右边工具图标-->
|
|
|
<div class="v-okc tool-wrap">
|
|
|
<!--v-hasPermi="['okc:videoPro:remove']"-->
|
|
|
- <el-button v-if="!disabled" class="tool-btn" plain circle icon="el-icon-plus" @click="changeProject" />
|
|
|
- <el-button class="tool-btn" plain circle icon="el-icon-edit" @click="openDrawer('draw')" />
|
|
|
- <el-button class="tool-btn" plain circle icon="el-icon-upload2" @click="openDrawer('export')" />
|
|
|
+ <el-button v-if="!disabled" title="导入视频" class="tool-btn" plain circle icon="el-icon-plus" @click="changeProject" />
|
|
|
+ <el-button class="tool-btn" title="绘制图表" plain circle icon="el-icon-edit" @click="openDrawer('draw')" />
|
|
|
+ <el-button class="tool-btn" title="导出图表" plain circle icon="el-icon-upload2" @click="openDrawer('export')" />
|
|
|
</div>
|
|
|
|
|
|
<!--视频左边工具图标-->
|
|
@@ -693,8 +693,8 @@ export default {
|
|
|
if (response.code === 200) {
|
|
|
response.rows.forEach((item, index) => {
|
|
|
item.orderId = index + 1
|
|
|
- item.startShowTime = this.timeTranslate(item.startTime)
|
|
|
- item.endShowTime = this.timeTranslate(item.endTime)
|
|
|
+ item.startShowTime = this.formatTime(item.startTime)
|
|
|
+ item.endShowTime = this.formatTime(item.endTime)
|
|
|
})
|
|
|
this.history = response.rows
|
|
|
}
|
|
@@ -721,7 +721,7 @@ export default {
|
|
|
if (this.currentRecord) {
|
|
|
this.$refs.video.currentTime = Number(this.currentRecord.startTime)
|
|
|
this.startTime = Number(this.currentRecord.startTime)
|
|
|
- this.endTime = 0
|
|
|
+ this.endTime = Number(this.currentRecord.endTime)
|
|
|
this.workForm = {
|
|
|
id: this.currentRecord.id,
|
|
|
behavior: this.currentRecord.behavior,
|
|
@@ -836,7 +836,7 @@ export default {
|
|
|
return item
|
|
|
})
|
|
|
this.chartsData.unshift(
|
|
|
- ['时间', 'B1', 'B2', 'B3', 'B4', 'B5', 'B6', 'B7', 'B8', 'B9', 'B10', 'B11', 'B12', 'B13', 'B14', 'B15', 'B16', 'IL', 'II', 'IC', 'IP', 'IA', 'IX', 'TL', 'TI', 'TP', 'ID', 'Verbal', 'Non_media', 'CK', 'PK', 'TK', 'PCK', 'TCK', 'TPK', 'TPACK']
|
|
|
+ ['时间', 'B1', 'B2', 'B3', 'B4', 'B5', 'B6', 'B7', 'B8', 'B9', 'B10', 'B11', 'B12', 'B13', 'B14', 'B15', 'B16', 'M1', 'M2', 'M3', 'M4', 'M5', 'M6', 'M7', 'M8', 'M9', 'M10', 'M11', 'M12', 'CK', 'PK', 'TK', 'PCK', 'TCK', 'TPK', 'TPACK']
|
|
|
)
|
|
|
} else {
|
|
|
this.$modal.msgWarning('暂无RC数据!')
|