authButton.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <script>
  2. export default {
  3. name: 'MenuItem',
  4. functional: true,
  5. props: {
  6. auth: {
  7. type: Object,
  8. require: true,
  9. default: () => { }
  10. },
  11. row: {
  12. type: Object,
  13. default: () => { }
  14. }
  15. },
  16. render (h, context) {
  17. const { auth, row } = context.props
  18. const vnodes = []
  19. if (auth && Object.keys(auth).length) {
  20. if (auth.show_type == 1) {
  21. vnodes.push(<el-button size="small" plain={true} onClick={() => auth.service_type == '1' ? context.parent.handleQuery() : auth.service_type == '2' ? context.parent.handleAdd() : auth.service_type == '3' ? context.parent.handleEdit(row) : context.parent.handleRemove(row)} type={auth.service_type != '4' ? 'primary' : 'danger'}>{auth.auth_name}</el-button>)
  22. } else if (auth.show_type == 3) {
  23. vnodes.push(<el-button size="small" icon={auth.show_icon} plain={true} onClick={() => auth.service_type == '1' ? context.parent.handleQuery() : auth.service_type == '2' ? context.parent.handleAdd() : auth.service_type == '3' ? context.parent.handleEdit(row) : context.parent.handleRemove(row)} type={auth.service_type != '4' ? 'primary' : 'danger'}>{auth.auth_name}</el-button>)
  24. }
  25. else {
  26. vnodes.push(<el-button size="small" icon={auth.show_icon} plain={true} onClick={() => auth.service_type == '1' ? context.parent.handleQuery() : auth.service_type == '2' ? context.parent.handleAdd() : auth.service_type == '3' ? context.parent.handleEdit(row) : context.parent.handleRemove(row)} type={auth.service_type != '4' ? 'primary' : 'danger'}></el-button>)
  27. }
  28. } else {
  29. vnodes.push(<span></span>)
  30. }
  31. return vnodes
  32. }
  33. }
  34. </script>
  35. <style scoped>
  36. .sub-el-icon {
  37. color: currentColor;
  38. width: 1em;
  39. height: 1em;
  40. }
  41. </style>