setting.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {{define "component/settingListItem"}}
  2. <a-list-item :style="{ padding: padding }">
  3. <a-row>
  4. <a-col :lg="24" :xl="12">
  5. <a-list-item-meta>
  6. <template #title>
  7. <slot name="title"></slot>
  8. </template>
  9. <template #description>
  10. <slot name="description"></slot>
  11. </template>
  12. </a-list-item-meta>
  13. </a-col>
  14. <a-col :lg="24" :xl="12">
  15. <slot name="control"></slot>
  16. </a-col>
  17. </a-row>
  18. </a-list-item>
  19. {{end}}
  20. {{define "component/setting"}}
  21. <script>
  22. Vue.component('a-setting-list-item', {
  23. props: {
  24. 'title': {
  25. type: String,
  26. required: true,
  27. },
  28. 'description': {
  29. type: String,
  30. required: false,
  31. },
  32. 'paddings': {
  33. type: String,
  34. required: false,
  35. defaultValue: "default",
  36. validator: function (value) {
  37. return ['small', 'default'].includes(value)
  38. }
  39. }
  40. },
  41. template: `{{ template "component/settingListItem" }}`,
  42. computed: {
  43. padding() {
  44. switch (this.paddings) {
  45. case "small":
  46. return "10px 20px !important"
  47. break;
  48. case "default":
  49. return "20px !important"
  50. break;
  51. }
  52. }
  53. }
  54. })
  55. </script>
  56. {{end}}