vue+antd 后台管理框架
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.
 
 
 
 

31 lines
785 B

<template>
<div>
<a-form style="max-width: 500px; margin: 40px auto 0;">
<result title="支付完成" :is-success="true" />
<a-form-item :wrapperCol="{span: 16, offset: 8}">
<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'
import Result from '../../result/Result'
export default {
name: 'Step3',
components: {Result, AButton, AFormItem, AForm},
methods: {
doOnceAgin () {
this.$emit('finish')
}
}
}
</script>
<style scoped>
</style>