55 lines
1.1 KiB
Markdown
55 lines
1.1 KiB
Markdown
<cn>
|
|
#### Error
|
|
夿įé蝝åéĻã
|
|
</cn>
|
|
|
|
<us>
|
|
#### Error
|
|
Complex error feedback.
|
|
</us>
|
|
|
|
```vue
|
|
<template>
|
|
<a-result
|
|
status="error"
|
|
title="Submission Failed"
|
|
sub-title="Please check and modify the following information before resubmitting."
|
|
>
|
|
<template #extra>
|
|
<a-button key="console" type="primary">
|
|
Go Console
|
|
</a-button>
|
|
<a-button key="buy">
|
|
Buy Again
|
|
</a-button>
|
|
</template>
|
|
|
|
<div class="desc">
|
|
<p style="font-size: 16px;">
|
|
<strong>The content you submitted has the following error:</strong>
|
|
</p>
|
|
<p>
|
|
<a-icon :style="{ color: 'red' }" type="close-circle" /> Your account has been frozen
|
|
<a>Thaw immediately ></a>
|
|
</p>
|
|
<p>
|
|
<a-icon :style="{ color: 'red' }" type="close-circle" /> Your account is not yet eligible to
|
|
apply <a>Apply Unlock ></a>
|
|
</p>
|
|
</div>
|
|
</a-result>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
.desc p {
|
|
margin-bottom: 1em;
|
|
}
|
|
</style>
|
|
```
|