From 3667807a7b7418efc090ee3fa6a6b734bc3080bf Mon Sep 17 00:00:00 2001
From: xieb <vip_xiaobin810@163.com>
Date: Wed, 13 Sep 2023 20:36:29 +0800
Subject: [PATCH] Merge branch 'develop' of http://s16s652780.51mypc.cn:49896/r/yskj/iot_drone_web into develop
---
src/components/MediaPanel.vue | 42 +++++++++++++++++++++---------------------
1 files changed, 21 insertions(+), 21 deletions(-)
diff --git a/src/components/MediaPanel.vue b/src/components/MediaPanel.vue
index 0d1dedd..143aebb 100644
--- a/src/components/MediaPanel.vue
+++ b/src/components/MediaPanel.vue
@@ -1,5 +1,5 @@
<template>
- <div class="header">Media Files</div>
+ <div class="header">媒体文件</div>
<a-spin :spinning="loading" :delay="1000" tip="downloading" size="large">
<div class="media-panel-wrapper">
<a-table class="media-table" :columns="columns" :data-source="mediaData.data" row-key="fingerprint"
@@ -40,40 +40,40 @@
const columns = [
{
- title: 'File Name',
+ title: '文件名称',
dataIndex: 'file_name',
ellipsis: true,
slots: { customRender: 'name' }
},
- {
- title: 'File Path',
- dataIndex: 'file_path',
- ellipsis: true,
- slots: { customRender: 'path' }
- },
// {
- // title: 'FileSize',
- // dataIndex: 'size',
+ // title: '文件路径',
+ // dataIndex: 'file_path',
+ // ellipsis: true,
+ // slots: { customRender: 'path' }
// },
{
- title: 'Drone',
- dataIndex: 'drone'
- },
- {
- title: 'Payload Type',
+ title: '拍摄负载',
dataIndex: 'payload'
},
{
- title: 'Original',
- dataIndex: 'is_original',
- slots: { customRender: 'original' }
+ title: '大小',
+ dataIndex: 'size',
},
+ // {
+ // title: '拍摄负载',
+ // dataIndex: 'drone'
+ // },
+ // {
+ // title: 'Original',
+ // dataIndex: 'is_original',
+ // slots: { customRender: 'original' }
+ // },
{
- title: 'Created',
+ title: '创建时间',
dataIndex: 'create_time'
},
{
- title: 'Action',
+ title: '操作',
slots: { customRender: 'action' }
}
]
@@ -109,7 +109,7 @@
})
onMounted(() => {
- getFiles()
+ // getFiles()
})
function getFiles () {
--
Gitblit v1.9.3