🚧 批量上传.

This commit is contained in:
lijiahangmax
2024-05-08 00:13:29 +08:00
parent f416e63b66
commit f323690472
33 changed files with 928 additions and 47 deletions

View File

@@ -62,10 +62,6 @@
@page-change="(page) => fetchTableData(page, pagination.pageSize)"
@page-size-change="(size) => fetchTableData(1, size)"
:bordered="false">
<!-- 模板名称 -->
<template #name="{ record }">
<span class="span-blue">{{ record.name }}</span>
</template>
<!-- 模板命令 -->
<template #command="{ record }">
<span class="copy-left" @click="copy(record.command, '已复制')">

View File

@@ -78,7 +78,7 @@
:bordered="false">
<!-- 配置项 -->
<template #keyName="{ record }">
<span class="text-copy span-blue" @click="copy(record.keyName)">{{ record.keyName }}</span>
<span class="text-copy" @click="copy(record.keyName)">{{ record.keyName }}</span>
</template>
<!-- 配置值类型 -->
<template #valueType="{ record }">

View File

@@ -75,8 +75,7 @@
:bordered="false">
<!-- 用户名 -->
<template #username="{ record }">
<span class="span-blue text-copy"
@click="copy(record.username)">
<span class="text-copy" @click="copy(record.username)">
{{ record.username }}
</span>
</template>