|
|
@ -5,6 +5,25 @@ |
|
|
|
<div class="page-main md:w-screen-xl m-auto p-3"> |
|
|
|
<el-row :gutter="24"> |
|
|
|
<el-col :span="18" :xs="24"> |
|
|
|
<el-card shadow="hover" class="hover:border-green-50 hover:border-2 mb-5"> |
|
|
|
<template #header> |
|
|
|
<div class="card-header font-bold text-xl"> |
|
|
|
<span>应用介绍</span> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
<el-descriptions title="应用参数" :column="2" border> |
|
|
|
<el-descriptions-item v-for="(item,index) in form.parameters" :key="index" :label="item.name">{{ item.value }}</el-descriptions-item> |
|
|
|
</el-descriptions> |
|
|
|
<div class="h-[24px]"></div> |
|
|
|
<el-descriptions title="代码仓库" :column="1" border> |
|
|
|
<el-descriptions-item v-for="(item,index) in form.gits" :key="index" :label="item.title"> |
|
|
|
<el-input v-model="item.domain" readonly /> |
|
|
|
</el-descriptions-item> |
|
|
|
</el-descriptions> |
|
|
|
<div class="h-[24px]"></div> |
|
|
|
<el-descriptions title="安装说明" /> |
|
|
|
<p v-html="form.content" class="content"></p> |
|
|
|
</el-card> |
|
|
|
<el-card shadow="hover" v-if="form.files?.length" class="hover:border-green-50 hover:border-2 mb-5"> |
|
|
|
<template #header> |
|
|
|
<div class="card-header font-bold text-xl"> |
|
|
@ -25,25 +44,6 @@ |
|
|
|
</template> |
|
|
|
</div> |
|
|
|
</el-card> |
|
|
|
<el-card shadow="hover" class="hover:border-green-50 hover:border-2 mb-5"> |
|
|
|
<template #header> |
|
|
|
<div class="card-header font-bold text-xl"> |
|
|
|
<span>应用介绍</span> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
<el-descriptions title="应用参数" :column="2" border> |
|
|
|
<el-descriptions-item v-for="(item,index) in form.parameters" :key="index" :label="item.name">{{ item.value }}</el-descriptions-item> |
|
|
|
</el-descriptions> |
|
|
|
<div class="h-[24px]"></div> |
|
|
|
<el-descriptions title="代码仓库" :column="1" border> |
|
|
|
<el-descriptions-item v-for="(item,index) in form.gits" :key="index" :label="item.title"> |
|
|
|
<el-input v-model="item.domain" readonly /> |
|
|
|
</el-descriptions-item> |
|
|
|
</el-descriptions> |
|
|
|
<div class="h-[24px]"></div> |
|
|
|
<el-descriptions title="安装说明" /> |
|
|
|
<p v-html="form.content" class="content"></p> |
|
|
|
</el-card> |
|
|
|
<!-- 产品评论 --> |
|
|
|
<Comments :productId="form.companyId" :comments="comments" :count="commentsTotal" @done="doComments" /> |
|
|
|
</el-col> |
|
|
|