Initial commit

This commit is contained in:
南宁网宿科技
2024-04-24 16:36:46 +08:00
commit 121348e011
991 changed files with 158700 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<template>
<div class="ele-body">
<a-card :bordered="false">
<div style="max-width: 960px; margin: 0 auto">
<a-result status="success" :title="item.title">
<div>{{ item.comments }}</div>
<template #extra>
<a-space size="middle">
<a-button
type="primary"
@click="item.back ? openUrl(item.back) : () => $router.go(-2)"
>返回</a-button
>
<a-button v-if="item.redirect" @click="openUrl(item.redirect)"
>查看详情</a-button
>
</a-space>
</template>
</a-result>
</div>
</a-card>
</div>
</template>
<script lang="ts" setup>
import { openUrl } from '@/utils/common';
import { useParamsStore } from '@/store/modules/params';
const item = useParamsStore();
</script>
<script lang="ts">
export default {
name: 'ResultSuccess'
};
</script>