1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| <template>
| <div style="max-width: 500px; margin: 40px auto 0; text-align: center">
| <result :title="$t('success')" :is-success="true" />
| <a-button type="primary" @click="doOnceAgin">{{$t('doAgain')}}</a-button>
| <a-button style="margin-left: 8px">{{$t('bill')}}</a-button>
| </div>
| </template>
|
| <script>
| import Result from '@/components/result/Result'
| export default {
| name: 'Step3',
| i18n: require('./i18n'),
| components: {Result},
| methods: {
| doOnceAgin () {
| this.$emit('finish')
| }
| }
| }
| </script>
|
| <style scoped>
|
| </style>
|
|