删除 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

47
Dashboard/bing.js.bak Normal file
View File

@@ -0,0 +1,47 @@
// app.js
const { createApp } = Vue;
const app = createApp({
data() {
return {
w: null,
p: null,
d: null,
s: true,
}
},
async mounted() {
// 生命周期钩子 - 挂载后
console.log('应用已挂载');
},
methods: {
search() {
Message.info('正在请求...', { duration: 5000000000000000 });
this.s = false;
axios.get('https://zk.aoidc.top/api/api.php?q='+this.w)
.then(response => {
Message.closeAll();
this.s = true;
if (response.data.results != null) {
this.d = response.data.results;
this.s = true;
Message.success('已载入~', { duration: 2000 });
} else {
Message.warning('失败', { duration: 2000 });
}
})
},
}
});
// 挂载到DOM元素
app.mount('#app');