Success.vue 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <a-card :bordered="false">
  3. <result :is-success="true" :description="description" :title="title">
  4. <template slot="action">
  5. <a-button type="primary">返回列表</a-button>
  6. <a-button style="margin-left: 8px">查看项目</a-button>
  7. <a-button style="margin-left: 8px">打印</a-button>
  8. </template>
  9. <div>
  10. <div style="font-size: 16px; color: rgba(0, 0, 0, 0.85); font-weight: 500; margin-bottom: 20px;">项目名称</div>
  11. <a-row style="margin-bottom: 16px">
  12. <a-col :xs="24" :sm="12" :md="12" :lg="12" :xl="6">
  13. <span style="color: rgba(0, 0, 0, 0.85)">项目 ID:</span>
  14. 20180724089
  15. </a-col>
  16. <a-col :xs="24" :sm="12" :md="12" :lg="12" :xl="6">
  17. <span style="color: rgba(0, 0, 0, 0.85)">负责人:</span>
  18. 曲丽丽是谁?
  19. </a-col>
  20. <a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="12">
  21. <span style="color: rgba(0, 0, 0, 0.85)">生效时间:</span>
  22. 2016-12-12 ~ 2017-12-12
  23. </a-col>
  24. </a-row>
  25. <a-steps :current="1" :direction="isMobile() && directionType.vertical || directionType.horizontal" progressDot>
  26. <a-step >
  27. <span style="font-size: 14px" slot="title">创建项目</span>
  28. <template slot="description">
  29. <div style="fontSize: 12px; color: rgba(0, 0, 0, 0.45); position: relative; left: 42px;" slot="description" >
  30. <div style="margin: 8px 0 4px">
  31. 曲丽丽
  32. <a-icon style="margin-left: 8px" type="dingding-o" />
  33. </div>
  34. <div>2016-12-12 12:32</div>
  35. </div>
  36. </template>
  37. </a-step>
  38. <a-step title="部门初审">
  39. <span style="font-size: 14px" slot="title">部门初审</span>
  40. <template slot="description">
  41. <div style="fontSize: 12px; color: rgba(0, 0, 0, 0.45); position: relative; left: 42px;" slot="description" >
  42. <div style="margin: 8px 0 4px">
  43. 周毛毛
  44. <a-icon style="margin-left: 8px; color: #00A0E9" type="dingding-o" />
  45. </div>
  46. <div><a href="">催一下</a></div>
  47. </div>
  48. </template>
  49. </a-step>
  50. <a-step title="财务复核">
  51. <span style="font-size: 14px" slot="title">财务复核</span>
  52. </a-step>
  53. <a-step title="完成" >
  54. <span style="font-size: 14px" slot="title">完成</span>
  55. </a-step>
  56. </a-steps>
  57. </div>
  58. </result>
  59. </a-card>
  60. </template>
  61. <script>
  62. import Result from './Result'
  63. import { mixinDevice } from '@/utils/mixin.js'
  64. const directionType = {
  65. horizontal: 'horizontal',
  66. vertical: 'vertical'
  67. }
  68. export default {
  69. name: 'Success',
  70. components: {
  71. Result
  72. },
  73. mixins: [mixinDevice],
  74. data () {
  75. return {
  76. title: '提交成功',
  77. description: '提交结果页用于反馈一系列操作任务的处理结果,\n' +
  78. ' 如果仅是简单操作,使用 Message 全局提示反馈即可。\n' +
  79. ' 本文字区域可以展示简单的补充说明,如果有类似展示\n' +
  80. ' “单据”的需求,下面这个灰色区域可以呈现比较复杂的内容。',
  81. directionType
  82. }
  83. }
  84. }
  85. </script>
  86. <style scoped>
  87. </style>