82ad7b8f8b3790dc1b4be61dc9f9ee1a45449873.svn-base 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <template>
  2. <div>
  3. <a-form style="margin: 40px auto 0;">
  4. <result title="操作成功" :is-success="true" description="预计两小时内到账">
  5. <div class="information">
  6. <a-row>
  7. <a-col :sm="8" :xs="24">付款账户:</a-col>
  8. <a-col :sm="16" :xs="24">ant-design@alipay.com</a-col>
  9. </a-row>
  10. <a-row>
  11. <a-col :sm="8" :xs="24">收款账户:</a-col>
  12. <a-col :sm="16" :xs="24">test@example.com</a-col>
  13. </a-row>
  14. <a-row>
  15. <a-col :sm="8" :xs="24">收款人姓名:</a-col>
  16. <a-col :sm="16" :xs="24">辉夜</a-col>
  17. </a-row>
  18. <a-row>
  19. <a-col :sm="8" :xs="24">转账金额:</a-col>
  20. <a-col :sm="16" :xs="24"><span class="money">500</span> 元</a-col>
  21. </a-row>
  22. </div>
  23. <div slot="action">
  24. <a-button type="primary" @click="finish">再转一笔</a-button>
  25. <a-button style="margin-left: 8px" @click="toOrderList">查看账单</a-button>
  26. </div>
  27. </result>
  28. </a-form>
  29. </div>
  30. </template>
  31. <script>
  32. import Result from '../../../result/Result'
  33. export default {
  34. name: "Step3",
  35. components: {
  36. Result
  37. },
  38. data () {
  39. return {
  40. loading: false
  41. }
  42. },
  43. methods: {
  44. finish () {
  45. this.$emit('finish')
  46. },
  47. toOrderList () {
  48. this.$router.push('/list/query-list')
  49. }
  50. }
  51. }
  52. </script>
  53. <style lang="less" scoped>
  54. .information {
  55. line-height: 22px;
  56. .ant-row:not(:last-child) {
  57. margin-bottom: 24px;
  58. }
  59. }
  60. .money {
  61. font-family: "Helvetica Neue",sans-serif;
  62. font-weight: 500;
  63. font-size: 20px;
  64. line-height: 14px;
  65. }
  66. </style>