删除 More/t.php.bak

This commit is contained in:
2025-10-17 23:32:12 +08:00
committed by cssfw
parent 917d269c83
commit 1f5ac5e0ca
79 changed files with 13493 additions and 0 deletions

49
Dashboard/bing.html Normal file
View File

@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FuxSo</title>
<link rel="stylesheet" href="app.css" /> <!-- 移动到head内部 -->
</head>
<body class="container">
<div id="app">
<transition name="fade-blur">
<div v-if="s">
<div class="form-container min">
<h3 style="margin:0 0 16px;">Bing搜索</h3>
<label>关键字</label>
<input v-model="w" placeholder="请输入关键字"/>
<button @click="search">提交</button>
</div>
<div v-for="m in d" class="card min">
<div class="header">
<div class="icon-wrapper">
<img class="icon" :src="m.icon">
</div>
<div class="title-group">
<h2 class="title">{{ m.title }}</h2>
<a :href="m.link" class="status">
<svg width="12" height="12" viewBox="0 0 24 24" fill="currentColor">
<circle cx="12" cy="12" r="10" />
</svg>
前往
</a>
</div>
</div>
<div class="detail-grid">
<div class="detail-item">
<span class="label">{{ m.description }}</span>
</div>
</div> <!-- 删除多余的闭合标签 -->
</div>
</transition>
</div>
<!-- 依赖库 -->
<script src="https://cdn.fss.fuxsto.cn/d/axios@1.7.9/dist/axios.min.js"></script>
<script src="https://cdn.fss.fuxsto.cn/d/vue@3.5.13/dist/vue.global.prod.js"></script>
<script src="msg.js"></script>
<script src="bing.js"></script>
</body>
</html>