clear
This commit is contained in:
parent
c00907127c
commit
975dafef7c
|
@ -270,7 +270,6 @@ export default defineComponent(() => {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (store.editBlockItem !== null) {
|
if (store.editBlockItem !== null) {
|
||||||
console.log(123)
|
|
||||||
layout.changeBlock(form, store.editBlockItem.id)
|
layout.changeBlock(form, store.editBlockItem.id)
|
||||||
useRouterStore().back()
|
useRouterStore().back()
|
||||||
store.editBlockItem = null
|
store.editBlockItem = null
|
||||||
|
|
|
@ -85,7 +85,6 @@ export default defineComponent({
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
watch(pair, console.log)
|
|
||||||
return () => (
|
return () => (
|
||||||
<div class="absolute left-0 top-0 w-full h-screen z-0">
|
<div class="absolute left-0 top-0 w-full h-screen z-0">
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,6 @@ export default function useResource(tag: Ref<string>, type: string) {
|
||||||
if (!res) return
|
if (!res) return
|
||||||
const item = res.find((item) => item.tag === val)
|
const item = res.find((item) => item.tag === val)
|
||||||
if (item) {
|
if (item) {
|
||||||
console.log('是是视频');
|
|
||||||
|
|
||||||
resource.video = URL.createObjectURL(item.file)
|
resource.video = URL.createObjectURL(item.file)
|
||||||
resource.type = 'local'
|
resource.type = 'local'
|
||||||
|
@ -98,11 +97,8 @@ export default function useResource(tag: Ref<string>, type: string) {
|
||||||
if (!res) return
|
if (!res) return
|
||||||
const item = res.find((item) => item.tag === val)
|
const item = res.find((item) => item.tag === val)
|
||||||
if (!item) return
|
if (!item) return
|
||||||
console.log(item);
|
|
||||||
|
|
||||||
const url = URL.createObjectURL(item.file)
|
const url = URL.createObjectURL(item.file)
|
||||||
console.log('本地资源');
|
|
||||||
console.log(url);
|
|
||||||
|
|
||||||
|
|
||||||
resource.image = item.type === 'image' ? url : ''
|
resource.image = item.type === 'image' ? url : ''
|
||||||
|
|
|
@ -17,7 +17,6 @@ export default defineComponent({
|
||||||
isSearch: settings.state.autoUseAi === ''
|
isSearch: settings.state.autoUseAi === ''
|
||||||
}),
|
}),
|
||||||
(val) => {
|
(val) => {
|
||||||
console.log(val)
|
|
||||||
sendParent([
|
sendParent([
|
||||||
'configAI',
|
'configAI',
|
||||||
{
|
{
|
||||||
|
|
|
@ -82,7 +82,6 @@ export default defineComponent({
|
||||||
if (!oldBlock || oldBlock.link.startsWith('id:')) return
|
if (!oldBlock || oldBlock.link.startsWith('id:')) return
|
||||||
if (link.startsWith('id:')) {
|
if (link.startsWith('id:')) {
|
||||||
// 本身就是文件夹
|
// 本身就是文件夹
|
||||||
console.log(123)
|
|
||||||
|
|
||||||
const id = link.slice(3)
|
const id = link.slice(3)
|
||||||
|
|
||||||
|
|
|
@ -108,7 +108,6 @@ export default defineComponent(() => {
|
||||||
></Table>
|
></Table>
|
||||||
),
|
),
|
||||||
onOk() {
|
onOk() {
|
||||||
console.log('OK')
|
|
||||||
ins.destroy()
|
ins.destroy()
|
||||||
},
|
},
|
||||||
onCancel() {
|
onCancel() {
|
||||||
|
|
|
@ -198,7 +198,6 @@ export default defineComponent(() => {
|
||||||
})
|
})
|
||||||
uploadLocal(file).then((res2) => {
|
uploadLocal(file).then((res2) => {
|
||||||
val.background = res2
|
val.background = res2
|
||||||
console.log(res2);
|
|
||||||
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,10 +53,8 @@ export default defineStore('search', () => {
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
const debouncedHandler = debounce((newValue) => {
|
const debouncedHandler = debounce((newValue) => {
|
||||||
console.log('数值改变并已防抖处理:', newValue)
|
|
||||||
request<SearchAdType[]>("GET", `/api/app/searchBars?keyword=${newValue || 'undefine'}`).then((res) => {
|
request<SearchAdType[]>("GET", `/api/app/searchBars?keyword=${newValue || 'undefine'}`).then((res) => {
|
||||||
addList.value = res
|
addList.value = res
|
||||||
console.log(addList.value);
|
|
||||||
|
|
||||||
})
|
})
|
||||||
}, 500) //
|
}, 500) //
|
||||||
|
|
|
@ -20,12 +20,7 @@ export default defineComponent(() => {
|
||||||
},
|
},
|
||||||
{ immediate: true }
|
{ immediate: true }
|
||||||
)
|
)
|
||||||
watch(
|
|
||||||
() => selected.value,
|
|
||||||
(val) => {
|
|
||||||
console.log(val)
|
|
||||||
}
|
|
||||||
)
|
|
||||||
return () => (
|
return () => (
|
||||||
<div
|
<div
|
||||||
class="w-[56px] h-[56px] relative cursor-pointer"
|
class="w-[56px] h-[56px] relative cursor-pointer"
|
||||||
|
|
|
@ -8,11 +8,7 @@ addIcons(FaUserAlt)
|
||||||
|
|
||||||
export default defineComponent(() => {
|
export default defineComponent(() => {
|
||||||
const store = useUserStore()
|
const store = useUserStore()
|
||||||
watch(() => store.profile.avatar, (e) => {
|
|
||||||
console.log(e);
|
|
||||||
|
|
||||||
console.log('avatar change')
|
|
||||||
})
|
|
||||||
return () => {
|
return () => {
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
|
|
|
@ -32,7 +32,6 @@ export default defineComponent(() => {
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
if (res) {
|
if (res) {
|
||||||
clearInterval(it)
|
clearInterval(it)
|
||||||
console.log(res)
|
|
||||||
user.token = res
|
user.token = res
|
||||||
router.back()
|
router.back()
|
||||||
message.success('登录成功')
|
message.success('登录成功')
|
||||||
|
|
|
@ -32,8 +32,6 @@ function areArraysEqualById(arr1: Block[], arr2: Block[]): boolean {
|
||||||
|
|
||||||
// 检查 arr1 中的每个 item 是否在 arr2 中存在,并且值是否相同
|
// 检查 arr1 中的每个 item 是否在 arr2 中存在,并且值是否相同
|
||||||
for (let i = 0; i < arr1.length; i++) {
|
for (let i = 0; i < arr1.length; i++) {
|
||||||
console.log(arr1[i].id)
|
|
||||||
console.log(arr2[i].id)
|
|
||||||
|
|
||||||
if (arr1[i].id !== arr2[i].id) {
|
if (arr1[i].id !== arr2[i].id) {
|
||||||
return false
|
return false
|
||||||
|
@ -90,7 +88,6 @@ export default defineStore('user', () => {
|
||||||
|
|
||||||
watch(token, async (val) => {
|
watch(token, async (val) => {
|
||||||
if (!val) return
|
if (!val) return
|
||||||
console.log(val)
|
|
||||||
|
|
||||||
const data = await request<Layout>('GET', '/api/backup')
|
const data = await request<Layout>('GET', '/api/backup')
|
||||||
if (!data) {
|
if (!data) {
|
||||||
|
@ -126,7 +123,6 @@ export default defineStore('user', () => {
|
||||||
}
|
}
|
||||||
const comineData = () => {
|
const comineData = () => {
|
||||||
if (!remoteAddList.value) return
|
if (!remoteAddList.value) return
|
||||||
console.log({ ...remoteAddList.value })
|
|
||||||
remoteAddList.value.map((item) => {
|
remoteAddList.value.map((item) => {
|
||||||
if (item.link)
|
if (item.link)
|
||||||
layout.state.content[layout.state.current].pages[layout.state.currentPage].list.push(item)
|
layout.state.content[layout.state.current].pages[layout.state.currentPage].list.push(item)
|
||||||
|
|
|
@ -14,7 +14,6 @@ const fetchAdverConfig = async () => {
|
||||||
request('GET', '/api/app/adverLinks/params'),
|
request('GET', '/api/app/adverLinks/params'),
|
||||||
request('GET', '/api/app/adverLinks/link')
|
request('GET', '/api/app/adverLinks/link')
|
||||||
]).then((res: any) => {
|
]).then((res: any) => {
|
||||||
console.log('----', res)
|
|
||||||
const result: AdverData = { links: [], params: [], expiration: Date.now() + 1000 * 60 * 60 * 4 }
|
const result: AdverData = { links: [], params: [], expiration: Date.now() + 1000 * 60 * 60 * 4 }
|
||||||
if (res[0].status === 'fulfilled') {
|
if (res[0].status === 'fulfilled') {
|
||||||
result.params = res[0].value
|
result.params = res[0].value
|
||||||
|
|
|
@ -17,7 +17,6 @@ export default defineStore('statistic', () => {
|
||||||
list.value.push(item)
|
list.value.push(item)
|
||||||
}
|
}
|
||||||
const debouncedHandler = debounce((newValue: StatisticType[]) => {
|
const debouncedHandler = debounce((newValue: StatisticType[]) => {
|
||||||
console.log('数值改变并已防抖处理:', newValue)
|
|
||||||
if (newValue.length === 0) return
|
if (newValue.length === 0) return
|
||||||
request("POST", `/api/app/statistics`, {
|
request("POST", `/api/app/statistics`, {
|
||||||
data: newValue.map((item) => ({
|
data: newValue.map((item) => ({
|
||||||
|
@ -33,7 +32,6 @@ export default defineStore('statistic', () => {
|
||||||
})
|
})
|
||||||
}, 2500) //
|
}, 2500) //
|
||||||
watch(list, (newValue) => {
|
watch(list, (newValue) => {
|
||||||
console.log(list);
|
|
||||||
|
|
||||||
debouncedHandler(newValue)
|
debouncedHandler(newValue)
|
||||||
}, {
|
}, {
|
||||||
|
|
|
@ -29,7 +29,6 @@ export default defineComponent(() => {
|
||||||
watch(
|
watch(
|
||||||
selectType,
|
selectType,
|
||||||
(val) => {
|
(val) => {
|
||||||
console.log(val);
|
|
||||||
appList.value = []
|
appList.value = []
|
||||||
loading.value = true
|
loading.value = true
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue