el-button.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <script setup lang="ts">
  2. import { ref, watch } from "vue";
  3. import { useDark } from "@pureadmin/utils";
  4. import { useRenderIcon } from "@/components/ReIcon/src/hooks";
  5. defineOptions({
  6. name: "PureButton"
  7. });
  8. const { isDark } = useDark();
  9. const size = ref("default");
  10. const dynamicSize = ref();
  11. const baseRadio = ref("default");
  12. const buttonList = [
  13. {
  14. type: "",
  15. text: "Default",
  16. icon: "ep:search"
  17. },
  18. {
  19. type: "primary",
  20. text: "Primary",
  21. icon: "ep:edit"
  22. },
  23. {
  24. type: "success",
  25. text: "Success",
  26. icon: "ep:check"
  27. },
  28. {
  29. type: "info",
  30. text: "Info",
  31. icon: "ep:message"
  32. },
  33. {
  34. type: "warning",
  35. text: "Warning",
  36. icon: "ep:star"
  37. },
  38. {
  39. type: "danger",
  40. text: "Danger",
  41. icon: "ep:delete"
  42. }
  43. ];
  44. watch(size, val =>
  45. val === "disabled"
  46. ? (dynamicSize.value = "default")
  47. : (dynamicSize.value = size.value)
  48. );
  49. </script>
  50. <template>
  51. <el-card shadow="never">
  52. <template #header>
  53. <div class="card-header">
  54. <el-space wrap :size="40">
  55. <el-link
  56. v-tippy="{
  57. content: '点击查看详细文档'
  58. }"
  59. href="https://element-plus.org/zh-CN/component/button.html"
  60. target="_blank"
  61. style="font-size: 16px; font-weight: 800"
  62. >
  63. Button 按钮
  64. </el-link>
  65. <el-radio-group v-model="size" size="small">
  66. <el-radio value="large">大尺寸</el-radio>
  67. <el-radio value="default">默认尺寸</el-radio>
  68. <el-radio value="small">小尺寸</el-radio>
  69. <el-radio value="disabled">禁用</el-radio>
  70. </el-radio-group>
  71. </el-space>
  72. </div>
  73. </template>
  74. <p class="mb-2">基础按钮</p>
  75. <el-radio-group v-model="baseRadio" class="mb-3">
  76. <el-radio label="default" value="default" />
  77. <el-radio label="plain" value="plain" />
  78. <el-radio label="round" value="round" />
  79. <el-radio label="circle" value="circle" />
  80. <el-radio label="link" value="link" />
  81. <el-radio label="text" value="text" />
  82. <el-radio label="text-bg" value="text-bg" />
  83. </el-radio-group>
  84. <br />
  85. <el-space wrap>
  86. <el-button
  87. v-for="(button, index) in buttonList"
  88. :key="index"
  89. :type="button.type"
  90. :size="dynamicSize"
  91. :disabled="size === 'disabled'"
  92. :plain="baseRadio === 'plain'"
  93. :round="baseRadio === 'round'"
  94. :circle="baseRadio === 'circle'"
  95. :link="baseRadio === 'link'"
  96. :text="baseRadio === 'text' || baseRadio === 'text-bg'"
  97. :bg="baseRadio === 'text-bg'"
  98. :icon="useRenderIcon(button.icon)"
  99. >
  100. <template v-if="baseRadio !== 'circle'" #default>
  101. <p>{{ button.text }}</p>
  102. </template>
  103. </el-button>
  104. </el-space>
  105. <el-divider />
  106. <p class="mb-4">加载状态按钮</p>
  107. <el-button
  108. text
  109. bg
  110. type="primary"
  111. :size="dynamicSize"
  112. :disabled="size === 'disabled'"
  113. :loading="size !== 'disabled'"
  114. >
  115. {{ size === "disabled" ? "停止加载" : "加载中" }}
  116. </el-button>
  117. <el-button
  118. type="primary"
  119. plain
  120. :size="dynamicSize"
  121. :disabled="size === 'disabled'"
  122. :loading-icon="useRenderIcon('ep:eleme')"
  123. :loading="size !== 'disabled'"
  124. >
  125. {{ size === "disabled" ? "停止加载" : "加载中" }}
  126. </el-button>
  127. <el-button
  128. type="primary"
  129. :size="dynamicSize"
  130. :disabled="size === 'disabled'"
  131. :loading="size !== 'disabled'"
  132. >
  133. <template #loading>
  134. <div class="custom-loading">
  135. <svg class="circular" viewBox="-10, -10, 50, 50">
  136. <path
  137. class="path"
  138. d="
  139. M 30 15
  140. L 28 17
  141. M 25.61 25.61
  142. A 15 15, 0, 0, 1, 15 30
  143. A 15 15, 0, 1, 1, 27.99 7.5
  144. L 15 15
  145. "
  146. style="fill: rgb(0 0 0 / 0%); stroke-width: 4px"
  147. />
  148. </svg>
  149. </div>
  150. </template>
  151. {{ size === "disabled" ? "停止加载" : "加载中" }}
  152. </el-button>
  153. <el-divider />
  154. <p class="mb-4">自定义元素标签。例如:按钮、div、链接</p>
  155. <el-button :size="dynamicSize" :disabled="size === 'disabled'">
  156. button 标签
  157. </el-button>
  158. <el-button
  159. tag="div"
  160. role="button"
  161. tabindex="0"
  162. :size="dynamicSize"
  163. :disabled="size === 'disabled'"
  164. >
  165. div 标签
  166. </el-button>
  167. <el-button
  168. type="primary"
  169. tag="a"
  170. :href="
  171. size === 'disabled'
  172. ? 'javascript:void(0);'
  173. : 'https://element-plus.org/zh-CN/component/button.html#tag'
  174. "
  175. :target="size === 'disabled' ? '_self' : '_blank'"
  176. rel="noopener noreferrer"
  177. :size="dynamicSize"
  178. :disabled="size === 'disabled'"
  179. >
  180. a 链接
  181. </el-button>
  182. <el-divider />
  183. <p class="mb-4">自定义颜色</p>
  184. <el-space wrap>
  185. <el-button
  186. color="#626aef"
  187. :size="dynamicSize"
  188. :disabled="size === 'disabled'"
  189. :dark="isDark"
  190. >
  191. Default
  192. </el-button>
  193. <el-button
  194. color="#626aef"
  195. :size="dynamicSize"
  196. :disabled="size === 'disabled'"
  197. :dark="isDark"
  198. plain
  199. >
  200. Plain
  201. </el-button>
  202. </el-space>
  203. </el-card>
  204. </template>
  205. <style lang="scss" scoped>
  206. :deep(.el-divider--horizontal) {
  207. margin: 17px 0;
  208. }
  209. .el-button .custom-loading .circular {
  210. width: 18px;
  211. height: 18px;
  212. margin-right: 6px;
  213. animation: loading-rotate 2s linear infinite;
  214. }
  215. .el-button .custom-loading .circular .path {
  216. stroke: var(--el-button-text-color);
  217. stroke-dasharray: 90, 150;
  218. stroke-dashoffset: 0;
  219. stroke-linecap: round;
  220. stroke-width: 2;
  221. animation: loading-dash 1.5s ease-in-out infinite;
  222. }
  223. </style>