-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(MedalList): Prototype ver0.7 #50
Conversation
{ | ||
let __VLS_52!: 'NTag' extends keyof typeof __VLS_ctx ? typeof __VLS_ctx.NTag : (typeof __VLS_resolvedLocalAndGlobalComponents)['NTag']; | ||
const __VLS_53 = __VLS_asFunctionalComponent(__VLS_52, new __VLS_52({ | ||
...{}, checked: ((__VLS_ctx.inDecrypt)), color: (({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [tsc] <2339> reported by reviewdog 🐶
Property 'inDecrypt' does not exist on type '{}'.
({} as { NTag: typeof __VLS_52; }).NTag; | ||
({} as { NTag: typeof __VLS_52; }).NTag; | ||
const __VLS_54 = __VLS_53({ | ||
...{}, checked: ((__VLS_ctx.inDecrypt)), color: (({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [tsc] <2339> reported by reviewdog 🐶
Property 'inDecrypt' does not exist on type '{}'.
})), | ||
}, ...__VLS_functionalComponentArgsRest(__VLS_53)); | ||
({} as (props: __VLS_FunctionalComponentProps<typeof __VLS_52, typeof __VLS_54> & Record<string, unknown>) => void)({ | ||
...{}, checked: ((__VLS_ctx.inDecrypt)), color: (({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [tsc] <2339> reported by reviewdog 🐶
Property 'inDecrypt' does not exist on type '{}'.
const __VLS_55 = __VLS_pickFunctionalComponentCtx(__VLS_52, __VLS_54)!; | ||
(__VLS_55.slots!).default; | ||
} | ||
(__VLS_ctx.medaldata.method); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [tsc] <2339> reported by reviewdog 🐶
Property 'medaldata' does not exist on type '{}'.
src/widgets/MedalList/Medal.vue
Outdated
<NLayoutSider bordered content-style="padding: 20px; text-align:center; background:#464646;" width="150"> | ||
<NImage | ||
width="100" | ||
:src="`/images/${getImagePath(`蚀刻章_${medaldata.alias}.png`)}`" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [tsc] <18048> reported by reviewdog 🐶
'__VLS_ctx.medaldata' is possibly 'undefined'.
src/widgets/MedalList/MedalList.vue
Outdated
</NGridItem> | ||
</NGrid> | ||
<div v-for="medalGroupId in cate.medalGroup"> | ||
【套组】{{ medalMetaData.medalGroup[medalGroupId].name }}<br>{{ medalMetaData.medalGroup[medalGroupId].desc }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [tsc] <2339> reported by reviewdog 🐶
Property 'medalGroup' does not exist on type '{}'.
src/widgets/MedalList/MedalList.vue
Outdated
</NGrid> | ||
<div v-for="medalGroupId in cate.medalGroup"> | ||
【套组】{{ medalMetaData.medalGroup[medalGroupId].name }}<br>{{ medalMetaData.medalGroup[medalGroupId].desc }} | ||
<div v-for="medalId in medalMetaData.medalGroup[medalGroupId].medal"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [tsc] <2339> reported by reviewdog 🐶
Property 'medalGroup' does not exist on type '{}'.
<div v-for="medalGroupId in cate.medalGroup"> | ||
【套组】{{ medalMetaData.medalGroup[medalGroupId].name }}<br>{{ medalMetaData.medalGroup[medalGroupId].desc }} | ||
<div v-for="medalId in medalMetaData.medalGroup[medalGroupId].medal"> | ||
{{ medalMetaData.medal[medalId].name }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [tsc] <2339> reported by reviewdog 🐶
Property 'medal' does not exist on type '{}'.
src/widgets/MedalList/MedalUtil.vue
Outdated
setup(props) { | ||
const content = ref(""); | ||
onBeforeMount(async () => { | ||
content.value = await getMedalMetaData(id); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [tsc] <2304> reported by reviewdog 🐶
Cannot find name 'id'.
src/widgets/MedalList/MedalUtil.vue
Outdated
setup(props) { | ||
const content = ref(""); | ||
onBeforeMount(async () => { | ||
content.value = await getMedalMetaData(id); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [tsc] <2554> reported by reviewdog 🐶
Expected 0 arguments, but got 1.
src/widgets/MedalList/MedalUtil.vue
Outdated
setup(props) { | ||
const content = ref(""); | ||
onBeforeMount(async () => { | ||
content.value = await getMedalMetaData(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [tsc] <2322> reported by reviewdog 🐶
Type 'Record<string, any>' is not assignable to type 'string'.
feat(MedalList): almost buildup feat(MedalList): hover style refactor: fix lint
No description provided.