2022-09-22 16:16:04 +08:00
|
|
|
<template>
|
2022-09-23 16:33:55 +08:00
|
|
|
<LayoutContent :header="$t('app.detail')" :back-name="'App'">
|
2022-09-22 16:16:04 +08:00
|
|
|
<div class="brief">
|
|
|
|
<el-row :gutter="20">
|
|
|
|
<el-col :span="4">
|
|
|
|
<div class="icon">
|
2022-09-23 16:33:55 +08:00
|
|
|
<el-image class="image" :src="'data:image/png;base64,' + app.icon"></el-image>
|
2022-09-22 16:16:04 +08:00
|
|
|
</div>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="20">
|
|
|
|
<div class="a-detail">
|
|
|
|
<div class="a-name">
|
2022-09-23 16:33:55 +08:00
|
|
|
<font size="5" style="font-weight: 800">{{ app.name }}</font>
|
2022-09-22 16:16:04 +08:00
|
|
|
</div>
|
|
|
|
<div class="a-description">
|
|
|
|
<span>
|
|
|
|
<font>
|
2022-09-23 16:33:55 +08:00
|
|
|
{{ app.shortDesc }}
|
2022-09-22 16:16:04 +08:00
|
|
|
</font>
|
|
|
|
</span>
|
|
|
|
</div>
|
2022-09-23 16:33:55 +08:00
|
|
|
<br />
|
2022-09-22 16:16:04 +08:00
|
|
|
<el-descriptions :column="1">
|
|
|
|
<el-descriptions-item :label="$t('app.version')">
|
2022-09-23 16:33:55 +08:00
|
|
|
<el-select v-model="version" @change="getDetail(version)">
|
|
|
|
<el-option v-for="(v, index) in app.versions" :key="index" :value="v" :label="v">
|
2022-09-22 16:16:04 +08:00
|
|
|
{{ v }}
|
|
|
|
</el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-descriptions-item>
|
2022-09-26 16:32:40 +08:00
|
|
|
<el-descriptions-item :label="$t('app.source')">
|
2022-09-23 16:33:55 +08:00
|
|
|
<el-link @click="toLink(app.source)">
|
|
|
|
<el-icon><Link /></el-icon>
|
|
|
|
</el-link>
|
2022-09-22 16:16:04 +08:00
|
|
|
</el-descriptions-item>
|
2022-09-26 16:32:40 +08:00
|
|
|
<el-descriptions-item :label="$t('app.author')">{{ app.author }}</el-descriptions-item>
|
2022-09-22 16:16:04 +08:00
|
|
|
</el-descriptions>
|
|
|
|
<div>
|
2022-09-26 16:32:40 +08:00
|
|
|
<el-button @click="openInstall" type="primary">{{ $t('app.install') }}</el-button>
|
2022-09-22 16:16:04 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</div>
|
|
|
|
<el-divider border-style="double" />
|
2022-09-23 16:33:55 +08:00
|
|
|
<div class="detail" v-loading="loadingDetail">
|
|
|
|
<v-md-preview :text="appDetail.readme"></v-md-preview>
|
2022-09-22 16:16:04 +08:00
|
|
|
</div>
|
2022-09-26 16:32:40 +08:00
|
|
|
<Install ref="installRef"></Install>
|
2022-09-22 16:16:04 +08:00
|
|
|
</LayoutContent>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2022-09-23 16:33:55 +08:00
|
|
|
import { GetApp, GetAppDetail } from '@/api/modules/app';
|
2022-09-22 16:16:04 +08:00
|
|
|
import LayoutContent from '@/layout/layout-content.vue';
|
2022-09-23 16:33:55 +08:00
|
|
|
import { onMounted, ref } from 'vue';
|
2022-09-26 16:32:40 +08:00
|
|
|
import Install from './install.vue';
|
2022-09-22 16:16:04 +08:00
|
|
|
|
2022-09-23 16:33:55 +08:00
|
|
|
interface OperateProps {
|
|
|
|
id: number;
|
|
|
|
}
|
|
|
|
const props = withDefaults(defineProps<OperateProps>(), {
|
|
|
|
id: 0,
|
2022-09-22 16:16:04 +08:00
|
|
|
});
|
2022-09-23 16:33:55 +08:00
|
|
|
let app = ref<any>({});
|
|
|
|
let appDetail = ref<any>({});
|
|
|
|
let version = ref('');
|
|
|
|
let loadingDetail = ref(false);
|
2022-09-26 16:32:40 +08:00
|
|
|
const installRef = ref();
|
2022-09-23 16:33:55 +08:00
|
|
|
|
|
|
|
const getApp = () => {
|
|
|
|
GetApp(props.id).then((res) => {
|
|
|
|
app.value = res.data;
|
|
|
|
version.value = app.value.versions[0];
|
|
|
|
getDetail(version.value);
|
|
|
|
});
|
|
|
|
};
|
2022-09-22 16:16:04 +08:00
|
|
|
|
2022-09-23 16:33:55 +08:00
|
|
|
const getDetail = (version: string) => {
|
|
|
|
loadingDetail.value = true;
|
|
|
|
GetAppDetail(props.id, version)
|
|
|
|
.then((res) => {
|
|
|
|
appDetail.value = res.data;
|
|
|
|
})
|
|
|
|
.finally(() => {
|
|
|
|
loadingDetail.value = false;
|
|
|
|
});
|
|
|
|
};
|
2022-09-22 16:16:04 +08:00
|
|
|
|
2022-09-23 16:33:55 +08:00
|
|
|
const toLink = (link: string) => {
|
|
|
|
window.open(link, '_blank');
|
2022-09-22 16:16:04 +08:00
|
|
|
};
|
2022-09-23 16:33:55 +08:00
|
|
|
|
2022-09-26 16:32:40 +08:00
|
|
|
const openInstall = () => {
|
|
|
|
let params = {
|
|
|
|
params: appDetail.value.params,
|
|
|
|
appDetailId: appDetail.value.id,
|
|
|
|
};
|
|
|
|
installRef.value.acceptParams(params);
|
|
|
|
};
|
|
|
|
|
2022-09-23 16:33:55 +08:00
|
|
|
onMounted(() => {
|
|
|
|
getApp();
|
|
|
|
});
|
2022-09-22 16:16:04 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.brief {
|
|
|
|
height: 30vh;
|
|
|
|
.icon {
|
|
|
|
.image {
|
|
|
|
width: auto;
|
|
|
|
height: 20vh;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|