You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
129 lines
4.5 KiB
129 lines
4.5 KiB
<template>
|
|
<div class="banner m-auto relative sm:flex">
|
|
<svg viewBox="0 0 1440 181" fill="none" xmlns="http://www.w3.org/2000/svg"
|
|
class="pointer-events-none absolute w-full top-[-2px] transition-all text-green-5 flex-shrink-0 opacity-100 duration-[400ms] opacity-80 -z-10">
|
|
<mask id="path-1-inside-1_414_5526" fill="white">
|
|
<path d="M0 0H1440V181H0V0Z"></path>
|
|
</mask>
|
|
<path d="M0 0H1440V181H0V0Z" fill="url(#paint0_linear_414_5526)" fill-opacity="0.22"></path>
|
|
<path d="M0 2H1440V-2H0V2Z" fill="url(#paint1_linear_414_5526)" mask="url(#path-1-inside-1_414_5526)"></path>
|
|
<defs>
|
|
<linearGradient id="paint0_linear_414_5526" x1="720" y1="0" x2="720" y2="181" gradientUnits="userSpaceOnUse">
|
|
<stop stop-color="currentColor"></stop>
|
|
<stop offset="1" stop-color="currentColor" stop-opacity="0"></stop>
|
|
</linearGradient>
|
|
<linearGradient id="paint1_linear_414_5526" x1="0" y1="90.5" x2="1440" y2="90.5" gradientUnits="userSpaceOnUse">
|
|
<stop stop-color="currentColor" stop-opacity="0"></stop>
|
|
<stop offset="0.395" stop-color="currentColor"></stop>
|
|
<stop offset="1" stop-color="currentColor" stop-opacity="0"></stop>
|
|
</linearGradient>
|
|
</defs>
|
|
</svg>
|
|
<div class="md:w-screen-xl m-auto">
|
|
|
|
<Breadcrumb :data="form" />
|
|
<div class="py-8 sm:py-16" _path="/templates" _dir="" _draft="false" _partial="false" _locale=""
|
|
_id="content:4.templates.yml" _type="yaml" _source="content" _file="4.templates.yml" _stem="4.templates"
|
|
_extension="yml">
|
|
<div class="gap-8 sm:gap-y-16 lg:items-center" v-if="form">
|
|
<div class="w-full">
|
|
<h1
|
|
class="text-2xl font-bold tracking-tight text-gray-900 dark:text-white sm:text-3xl lg:text-4xl">
|
|
<span v-if="form.title">{{ form.title }}</span>
|
|
</h1>
|
|
|
|
<div class="mt-4 text-gray-500 dark:text-gray-400">
|
|
<span>{{ form.nickname }}</span> · {{ form.createTime }}
|
|
</div>
|
|
|
|
<el-space class="mt-4">
|
|
<el-button
|
|
:icon="ElIconView"
|
|
size="large"
|
|
v-if="form.demoUrl"
|
|
@click="openSpmUrl(form.demoUrl)"
|
|
>
|
|
演示地址
|
|
</el-button>
|
|
<el-button
|
|
v-if="form.buyUrl"
|
|
:icon="ElIconBottom"
|
|
size="large"
|
|
@click="openSpmUrl(form.buyUrl)"
|
|
>
|
|
下载模版
|
|
</el-button>
|
|
<el-button
|
|
:icon="ElIconMemo"
|
|
size="large"
|
|
v-if="form.docUrl"
|
|
@click="openSpmUrl(form.docUrl)"
|
|
>
|
|
帮助文档
|
|
</el-button>
|
|
</el-space>
|
|
|
|
<el-alert title="Warning alert" type="warning" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import {useConfigInfo} from "~/composables/configState";
|
|
import {openSpmUrl} from "~/utils/common";
|
|
import Breadcrumb from "~/components/Breadcrumb.vue";
|
|
import type {Article} from "~/api/cms/article/model";
|
|
import type {CompanyParam} from "~/api/system/company/model";
|
|
import type {Navigation} from "~/api/cms/navigation/model";
|
|
import {useServerRequest} from "~/composables/useServerRequest";
|
|
import type {ApiResult, PageResult} from "~/api";
|
|
import useFormData from "~/utils/use-form-data";
|
|
|
|
const route = useRoute();
|
|
const token = useToken();
|
|
const sysDomain = useSysDomain();
|
|
|
|
withDefaults(
|
|
defineProps<{
|
|
title?: string;
|
|
desc?: string;
|
|
buyUrl?: string;
|
|
}>(),
|
|
{
|
|
title: 'Templates',
|
|
desc: 'Explore community templates to get up and running in a few seconds.',
|
|
demoUrl: '/product/website',
|
|
buyUrl: 'https://github.com/websoft9/ansible-templates'
|
|
}
|
|
);
|
|
|
|
|
|
// 配置信息
|
|
const { form, assignFields } = useFormData<Navigation>({
|
|
|
|
// 用于面包肖屑
|
|
parentName: undefined,
|
|
parentPath: undefined,
|
|
parentStatus: undefined,
|
|
categoryName: undefined,
|
|
categoryPath: undefined,
|
|
currentTitle: undefined,
|
|
style: undefined
|
|
});
|
|
const config = useConfigInfo();
|
|
|
|
|
|
// 请求数据
|
|
const reload = async () => {
|
|
const {data: response} = await useServerRequest<ApiResult<PageResult<Article>>>('/cms/cms-navigation/page',{params: {
|
|
categoryId: route.params.categoryId
|
|
}})
|
|
if(response.value?.data){
|
|
assignFields(response.value.data)
|
|
}
|
|
}
|
|
reload();
|
|
</script>
|