You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
785 B
32 lines
785 B
7 years ago
|
<template>
|
||
|
<div>
|
||
|
<a-form style="max-width: 500px; margin: 40px auto 0;">
|
||
7 years ago
|
<result title="支付完成" :is-success="true" />
|
||
|
<a-form-item :wrapperCol="{span: 16, offset: 8}">
|
||
7 years ago
|
<a-button type="primary" @click="doOnceAgin">再转一笔</a-button>
|
||
|
<a-button style="margin-left: 8px">查看账单</a-button>
|
||
|
</a-form-item>
|
||
|
</a-form>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import AForm from 'vue-antd-ui/es/form/Form'
|
||
|
import AFormItem from 'vue-antd-ui/es/form/FormItem'
|
||
|
import AButton from 'vue-antd-ui/es/button/button'
|
||
7 years ago
|
import Result from '../../result/Result'
|
||
7 years ago
|
export default {
|
||
|
name: 'Step3',
|
||
7 years ago
|
components: {Result, AButton, AFormItem, AForm},
|
||
7 years ago
|
methods: {
|
||
|
doOnceAgin () {
|
||
|
this.$emit('finish')
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|