|
|
@ -15,54 +15,53 @@ const openSwaggerLink = () => { |
|
|
|
</script> |
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
<template> |
|
|
|
<template> |
|
|
|
<div> |
|
|
|
<div |
|
|
|
<div @click="showDrawer = true"> |
|
|
|
class="flex items-center space-x-1 w-full cursor-pointer pl-3 py-1.5 hover:(text-primary bg-primary bg-opacity-5)" |
|
|
|
<div class="flex items-center space-x-1"> |
|
|
|
@click="showDrawer = true" |
|
|
|
<MdiCommentTextOutline class="mr-1 nc-share-base" /> |
|
|
|
> |
|
|
|
<!-- todo: i18n --> |
|
|
|
<MdiCommentTextOutline class="mr-1 nc-share-base" /> |
|
|
|
<div>APIs & Support</div> |
|
|
|
<!-- todo: i18n --> |
|
|
|
</div> |
|
|
|
<div>APIs & Support</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<a-drawer |
|
|
|
<a-drawer |
|
|
|
v-model:visible="showDrawer" |
|
|
|
v-model:visible="showDrawer" |
|
|
|
class="h-full relative" |
|
|
|
class="h-full relative" |
|
|
|
placement="right" |
|
|
|
placement="right" |
|
|
|
size="small" |
|
|
|
size="small" |
|
|
|
:closable="false" |
|
|
|
:closable="false" |
|
|
|
:body-style="{ padding: '12px 24px 0 24px', background: '#fafafa' }" |
|
|
|
:body-style="{ padding: '12px 24px 0 24px', background: '#fafafa' }" |
|
|
|
> |
|
|
|
> |
|
|
|
<div class="flex flex-col w-full h-full p-4 pb-0"> |
|
|
|
<div class="flex flex-col w-full h-full p-4 pb-0"> |
|
|
|
<!-- todo: i18n --> |
|
|
|
<!-- todo: i18n --> |
|
|
|
<a-typography-title :level="4" class="!mb-6 !text-gray-500">Help center</a-typography-title> |
|
|
|
<a-typography-title :level="4" class="!mb-6 !text-gray-500">Help center</a-typography-title> |
|
|
|
|
|
|
|
|
|
|
|
<GeneralSocialCard show-swagger-link class="!w-full nc-social-card"> |
|
|
|
<GeneralSocialCard show-swagger-link class="!w-full nc-social-card"> |
|
|
|
<template #before> |
|
|
|
<template #before> |
|
|
|
<a-list-item v-if="project"> |
|
|
|
<a-list-item v-if="project"> |
|
|
|
<nuxt-link |
|
|
|
<nuxt-link |
|
|
|
v-t="['e:docs']" |
|
|
|
v-t="['e:docs']" |
|
|
|
class="text-primary !no-underline !text-current py-4 font-weight-medium" |
|
|
|
class="text-primary !no-underline !text-current py-4 font-weight-medium" |
|
|
|
target="_blank" |
|
|
|
target="_blank" |
|
|
|
@click="openSwaggerLink" |
|
|
|
@click="openSwaggerLink" |
|
|
|
> |
|
|
|
> |
|
|
|
<div class="ml-3 flex items-center text-sm"> |
|
|
|
<div class="ml-3 flex items-center text-sm"> |
|
|
|
<LogosSwagger /> |
|
|
|
<LogosSwagger /> |
|
|
|
<!-- todo: i18n --> |
|
|
|
<!-- todo: i18n --> |
|
|
|
<span class="ml-3">{{ project.title }} : Swagger Documentation</span> |
|
|
|
<span class="ml-3">{{ project.title }} : Swagger Documentation</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</nuxt-link> |
|
|
|
</nuxt-link> |
|
|
|
</a-list-item> |
|
|
|
</a-list-item> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</GeneralSocialCard> |
|
|
|
</GeneralSocialCard> |
|
|
|
|
|
|
|
|
|
|
|
<div class="flex-1 my-2"></div> |
|
|
|
<div class="flex-1 my-2"></div> |
|
|
|
|
|
|
|
|
|
|
|
<GeneralSponsors class="!w-full" /> |
|
|
|
<GeneralSponsors class="!w-full" /> |
|
|
|
|
|
|
|
|
|
|
|
<div class="min-h-10 w-full" /> |
|
|
|
<div class="min-h-10 w-full" /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</a-drawer> |
|
|
|
</a-drawer> |
|
|
|
</div> |
|
|
|
|
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss"> |
|
|
|
<style scoped lang="scss"> |
|
|
|