index.vue 754 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div>
  3. <span v-if="status === 2" class="status warning">待审核</span>
  4. <span v-if="status === 1" class="status success">审核通过</span>
  5. <!-- 未通过原因展示 -->
  6. <template v-if="status === 0">
  7. <el-popover placement="top-start" title="审核说明" width="400" trigger="hover" :content="reason">
  8. <div slot="reference">
  9. <span class="status danger">审核未通过</span>
  10. <span class="el-icon-question status danger" />
  11. </div>
  12. </el-popover>
  13. </template>
  14. </div>
  15. </template>
  16. <script>
  17. export default {
  18. name: 'AuditStatus',
  19. props: {
  20. status: {
  21. type: Number,
  22. default: 0
  23. },
  24. reason: {
  25. type: String,
  26. default: ''
  27. }
  28. }
  29. }
  30. </script>