mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-03 07:36:36 +08:00
style: 整体调整
This commit is contained in:
@@ -247,6 +247,7 @@ onMounted(async () => {
|
||||
href="https://ccnetcore.com/article/3a1bc4d1-6a7d-751d-91cc-2817eb2ddcde"
|
||||
target="_blank"
|
||||
class="flex items-center gap-2 group"
|
||||
style="color: #E6A23C;"
|
||||
title="点击跳转玩法指南专栏"
|
||||
>
|
||||
【意心Ai】AI工具玩法指南
|
||||
@@ -261,7 +262,7 @@ onMounted(async () => {
|
||||
<!-- 自适应缩放 iframe -->
|
||||
<iframe
|
||||
src="https://ccnetcore.com/article/3a1bc4d1-6a7d-751d-91cc-2817eb2ddcde"
|
||||
class="min-w-full h-[700px] scale-100 hover:scale-[0.98] transition-transform duration-300"
|
||||
class="min-w-full h-[700px] scale-100 duration-300"
|
||||
loading="lazy"
|
||||
sandbox="allow-scripts allow-same-origin allow-popups"
|
||||
@load="document.querySelector('.iframe-loading')?.remove()"
|
||||
|
||||
@@ -27,10 +27,10 @@ const showWechatFullscreen = ref(false);
|
||||
const showWxGroupFullscreen = ref(false);
|
||||
|
||||
const wxSrc = computed(
|
||||
() => `${import.meta.env.VITE_WEB_BASE_API}/wwwroot/aihub/wx.png`,
|
||||
() => `/src/assets/images/wx.png`,
|
||||
);
|
||||
const wxGroupQD = computed(
|
||||
() => `${import.meta.env.VITE_WEB_BASE_API}/wwwroot/aihub/jlq.png`,
|
||||
() => `/src/assets/images/wx.png`,
|
||||
);
|
||||
|
||||
// 复制微信号
|
||||
@@ -237,7 +237,7 @@ onMounted(() => {
|
||||
</el-tooltip>
|
||||
<el-input
|
||||
v-model="searchText"
|
||||
placeholder="搜索联系方式/备注"
|
||||
placeholder="搜索备注"
|
||||
clearable
|
||||
style="width: 200px; margin-left: 10px;"
|
||||
@clear="handleSearchClear"
|
||||
@@ -294,14 +294,14 @@ onMounted(() => {
|
||||
sortable="custom"
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
<el-table-column show-overflow-tooltip prop="contactInfo" width="100" label="联系方式">
|
||||
<!-- <el-table-column show-overflow-tooltip prop="contactInfo" width="100" label="联系方式">
|
||||
<template #default="{ row }">
|
||||
<el-tooltip v-if="row.contactInfo && row.contactInfo.length > 8" :content="row.contactInfo" placement="top">
|
||||
<span class="ellipsis-text">{{ row.contactInfo }}</span>
|
||||
</el-tooltip>
|
||||
<span v-else>{{ row.contactInfo || '-' }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table-column> -->
|
||||
<el-table-column show-overflow-tooltip prop="remark" label="备注" width="160">
|
||||
<template #default="{ row }">
|
||||
<el-tooltip v-if="row.remark && row.remark.length > 10" :content="row.remark" placement="top">
|
||||
|
||||
@@ -364,7 +364,7 @@ onBeforeUnmount(() => {
|
||||
<div class="card-header">
|
||||
<span>近七天每日Token消耗量</span>
|
||||
<el-tag type="primary">
|
||||
总计: {{ totalTokens }} tokens
|
||||
近七日总计: {{ totalTokens }} tokens
|
||||
</el-tag>
|
||||
</div>
|
||||
</template>
|
||||
@@ -387,7 +387,7 @@ onBeforeUnmount(() => {
|
||||
<el-card v-loading="loading" class="chart-card">
|
||||
<template #header>
|
||||
<div class="card-header">
|
||||
<span>各模型Token消耗量</span>
|
||||
<span>各模型总Token消耗量</span>
|
||||
</div>
|
||||
</template>
|
||||
<div class="chart-container">
|
||||
|
||||
Reference in New Issue
Block a user