文章归档于:https://www.yuque.com/u27599042/row3c6

组件库地址

下载

  1. npm i xwb-ui

配置

  • 按需导入
  1. import {
  2. 组件名
  3. } from 'xwb-ui'
  • 完全导入
  1. import {createApp} from 'vue'
  2. import App from './App.vue'
  3. import 'xwb-ui/style.css' // 导入样式
  4. import XWB_UI from 'xwb-ui' // 导入组件全局注册插件
  5. const app = createApp(App)
  6. app.use(XWB_UI)
  7. app.mount('#app')

Small

仿写样例

  • 横向商品卡片 — 仿淘宝 - 图1

组件名

  • GoodsCardRowSmall

组件说明

  • 组件中的文字先进行了大小统一,16px,对于各部分的文字大小可以通过 props 进行修改
  • 对于商品图片,默认 img 高度为父元素的 100%,可以通过商品图片的父元素 goods-img 设置宽高来修改图片的大小
  • 商品标签所占的空间,默认为商品价格和商品名剩下的所有空间,商品名默认两行文本,超出部分 overflow: hidden;
  • 其他样式与 props 请参考 组件 props 说明组件源码

组件 props 说明

  1. /* 接收参数 */
  2. const props = defineProps({
  3. // 商品卡片的宽度
  4. width: {type: String, default: '23.3rem'},
  5. // 商品卡片的高度
  6. height: {type: String, default: '10rem'},
  7. // 商品卡片圆角
  8. borderRadius: {type: String, default: '1rem'},
  9. // 商品卡片背景颜色
  10. backgroundColor: {type: String, default: '#f7f9fa'},
  11. // 商品卡片中文字颜色
  12. fontColor: {type: String, default: '#333333'},
  13. // 商品卡片样式修改过度时间
  14. transitionTime: {type: String, default: '0.3s'},
  15. // 商品卡片鼠标悬浮时边框颜色
  16. borderColor: {type: String, default: '#67c23a'},
  17. // 商品卡片鼠标悬浮时阴影颜色
  18. boxShadowColor: {type: String, default: '#67c23a'},
  19. // 商品名称
  20. name: {type: String, default: '商品名称'},
  21. // 商品名文字大小
  22. nameFontSize: {type: String, default: '1rem'},
  23. // 商品名文本区域的宽度
  24. nameWidth: {type: String, default: '12rem'},
  25. // 商品名文本区域高度
  26. nameHeight: {type: String, default: '2.6rem'},
  27. // 商品名文本行高
  28. nameLineHeight: {type: String, default: '1.3rem'},
  29. // 商品名鼠标悬浮文字颜色
  30. nameHoverFontColor: {type: String, default: '#67c23a'},
  31. // 商品图片 src
  32. imgSrc: {type: String, default: '/img/book-1.png_580x580q90.jpg_.webp'},
  33. // 商品图片 alt
  34. imgAlt: {type: String, default: '商品图片'},
  35. // 商品图片容器高度
  36. imgBoxHeight: {type: String, default: '9rem'},
  37. // 商品图片容器宽度
  38. imgBoxWidth: {type: String, default: '9rem'},
  39. // 商品图片圆角
  40. imgBorderRadius: {type: String, default: '1rem'},
  41. // 商品标签
  42. label: {type: Array, default: []},
  43. // 商品价格
  44. price: {type: Number, default: 0},
  45. // 商品价格文字大小
  46. priceFontSize: {type: String, default: '1.3rem'},
  47. // 商品价格文字颜色
  48. priceFontColor: {type: String, default: '#67c23a'},
  49. // 商品标签颜色
  50. labelColor: {type: String, default: '#67c23a'},
  51. // 商品标签内边距
  52. labelPAdding: {type: String, default: '0.1rem'},
  53. // 商品标签右外边距
  54. labelMarginRight: {type: String, default: '0.35rem'},
  55. // 商品标签边框圆角
  56. labelBorderRadius: {type: String, default: '0.2rem'},
  57. // 商品标签文字大小
  58. labelFontSize: {type: String, default: '0.5rem'},
  59. })

组件的使用

  1. <GoodsCardRowSmall
  2. :name="'商品名称商品名称商品名称商品名称商品名称商品名称商品名称商品名称商品名称商品名称'"
  3. :label="['满减', '促销']"
  4. :labelColor="'red'"
  5. :borderColor="'red'"
  6. :boxShadowColor="'red'"
  7. :nameWidth="'100%'"
  8. :nameHoverFontColor="'red'"
  9. :imgSrc="'/img/book-1.png_580x580q90.jpg_.webp'"
  10. :priceFontColor="'red'"
  11. ></GoodsCardRowSmall>
  • 横向商品卡片 — 仿淘宝 - 图2

组件源码

  1. <script setup>
  2. /* 接收参数 */
  3. const props = defineProps({
  4. // 商品卡片的宽度
  5. width: {type: String, default: '23.3rem'},
  6. // 商品卡片的高度
  7. height: {type: String, default: '10rem'},
  8. // 商品卡片圆角
  9. borderRadius: {type: String, default: '1rem'},
  10. // 商品卡片背景颜色
  11. backgroundColor: {type: String, default: '#f7f9fa'},
  12. // 商品卡片中文字颜色
  13. fontColor: {type: String, default: '#333333'},
  14. // 商品卡片样式修改过度时间
  15. transitionTime: {type: String, default: '0.3s'},
  16. // 商品卡片鼠标悬浮时边框颜色
  17. borderColor: {type: String, default: '#67c23a'},
  18. // 商品卡片鼠标悬浮时阴影颜色
  19. boxShadowColor: {type: String, default: '#67c23a'},
  20. // 商品名称
  21. name: {type: String, default: '商品名称'},
  22. // 商品名文字大小
  23. nameFontSize: {type: String, default: '1rem'},
  24. // 商品名文本区域的宽度
  25. nameWidth: {type: String, default: '12rem'},
  26. // 商品名文本区域高度
  27. nameHeight: {type: String, default: '2.6rem'},
  28. // 商品名文本行高
  29. nameLineHeight: {type: String, default: '1.3rem'},
  30. // 商品名鼠标悬浮文字颜色
  31. nameHoverFontColor: {type: String, default: '#67c23a'},
  32. // 商品图片 src
  33. imgSrc: {type: String, default: '/img/book-1.png_580x580q90.jpg_.webp'},
  34. // 商品图片 alt
  35. imgAlt: {type: String, default: '商品图片'},
  36. // 商品图片容器高度
  37. imgBoxHeight: {type: String, default: '9rem'},
  38. // 商品图片容器宽度
  39. imgBoxWidth: {type: String, default: '9rem'},
  40. // 商品图片圆角
  41. imgBorderRadius: {type: String, default: '1rem'},
  42. // 商品标签
  43. label: {type: Array, default: []},
  44. // 商品价格
  45. price: {type: Number, default: 0},
  46. // 商品价格文字大小
  47. priceFontSize: {type: String, default: '1.3rem'},
  48. // 商品价格文字颜色
  49. priceFontColor: {type: String, default: '#67c23a'},
  50. // 商品标签颜色
  51. labelColor: {type: String, default: '#67c23a'},
  52. // 商品标签内边距
  53. labelPAdding: {type: String, default: '0.1rem'},
  54. // 商品标签右外边距
  55. labelMarginRight: {type: String, default: '0.35rem'},
  56. // 商品标签边框圆角
  57. labelBorderRadius: {type: String, default: '0.2rem'},
  58. // 商品标签文字大小
  59. labelFontSize: {type: String, default: '0.5rem'},
  60. })
  61. /* 商品卡片样式 */
  62. const goodsCardStyle = {
  63. width:props.width,
  64. height:props.height,
  65. borderRadius:props.borderRadius,
  66. backgroundColor: props.backgroundColor,
  67. color: props.fontColor,
  68. transition: `all ${props.transitionTime}`,
  69. }
  70. /* 商品名样式 */
  71. const goodsNameStyle = {
  72. fontSize: props.nameFontSize,
  73. width: props.nameWidth,
  74. height: props.nameHeight,
  75. lineHeight: props.nameLineHeight,
  76. }
  77. /* 商品图片样式 */
  78. const goodsImgStyle = {
  79. height: props.imgBoxHeight,
  80. width: props.imgBoxWidth,
  81. borderRadius: props.imgBorderRadius,
  82. }
  83. /* 商品价格样式 */
  84. const goodsPriceStyle = {
  85. fontSize: props.priceFontSize,
  86. color: props.priceFontColor
  87. }
  88. /* 商品标签样式 */
  89. const goodsLabelStyle = {
  90. color: props.labelColor,
  91. border: `1px solid ${props.labelColor}`,
  92. marginRight: props.labelMarginRight,
  93. padding: props.labelPAdding,
  94. borderRadius: props.labelBorderRadius,
  95. fontSize: props.labelFontSize
  96. }
  97. /* vue 内置函数 */
  98. import { ref, onMounted } from 'vue'
  99. /* 为商品卡片添加鼠标悬浮事件 */
  100. // 变量名必须和元素上 ref 属性值一样
  101. const goodsCardRef = ref(null) // 获取商品卡片引用
  102. // 组件挂载之后进行事件的绑定
  103. onMounted(() => {
  104. // 鼠标悬浮时,商品卡片边框颜色和盒子阴影
  105. goodsCardRef.value.addEventListener('mouseover', () => {
  106. goodsCardRef.value.style.border = `1px solid ${props.borderColor}`
  107. goodsCardRef.value.style.boxShadow = `0 0 8px 1px ${props.boxShadowColor}`
  108. })
  109. // 鼠标移开清除添加的样式
  110. goodsCardRef.value.addEventListener('mouseout', () => {
  111. goodsCardRef.value.style.border = 'none'
  112. goodsCardRef.value.style.boxShadow = 'none'
  113. })
  114. })
  115. /* 为商品名添加鼠标悬浮事件 */
  116. const goodsNameRef = ref(null) // 商品名引用
  117. // 组件挂载之后为商品名绑定事件
  118. onMounted(() => {
  119. // 鼠标悬浮时添加样式
  120. goodsNameRef.value.addEventListener('mouseover', () => {
  121. goodsNameRef.value.style.color = props.nameHoverFontColor
  122. })
  123. // 鼠标移开恢复样式
  124. goodsNameRef.value.addEventListener('mouseout', () => {
  125. goodsNameRef.value.style.color = props.fontColor
  126. })
  127. })
  128. </script>
  129. <template>
  130. <!-- 商品卡片 -->
  131. <div class="goods-card" :style="goodsCardStyle" ref="goodsCardRef">
  132. <!-- 商品图片 -->
  133. <div
  134. class="goods-img"
  135. :style="goodsImgStyle"
  136. >
  137. <img
  138. :src="imgSrc"
  139. :alt="imgAlt"
  140. :style="{ borderRadius: goodsImgStyle.borderRadius }"
  141. >
  142. </div>
  143. <!-- 商品信息 -->
  144. <div class="goods-info">
  145. <!-- 商品名 -->
  146. <p
  147. class="goods-name"
  148. :style="goodsNameStyle"
  149. ref="goodsNameRef"
  150. >{{ name }}</p>
  151. <!-- 商品标签 -->
  152. <div class="goods-label">
  153. <span
  154. v-for="(item, idx) in label"
  155. :key="idx"
  156. :style="goodsLabelStyle"
  157. >{{ item }}</span>
  158. </div>
  159. <p class="goods-price">
  160. <span
  161. :style="{color: goodsPriceStyle.color}"
  162. ></span>
  163. <span
  164. :style="goodsPriceStyle"
  165. >{{ price }}</span>
  166. </p>
  167. </div>
  168. </div>
  169. </template>
  170. <style lang="scss" scoped>
  171. // 商品卡片
  172. .goods-card {
  173. box-sizing: border-box;
  174. padding: 0.5rem 0.8rem 0.5rem 0.5rem;
  175. display: flex;
  176. justify-content: start;
  177. // 鼠标样式
  178. cursor: pointer;
  179. // 字体大小统一
  180. font-size: 16px;
  181. // 商品图片
  182. .goods-img {
  183. margin-right: 0.7rem;
  184. display: flex;
  185. justify-content: center;
  186. align-items: center;
  187. img {
  188. height: 100%;
  189. }
  190. }
  191. // 商品信息
  192. .goods-info {
  193. display: flex;
  194. flex-direction: column;
  195. justify-self: start;
  196. align-items: start;
  197. // 商品名
  198. .goods-name {
  199. box-sizing: border-box;
  200. margin: 0.5rem 0;
  201. overflow: hidden;
  202. // 鼠标样式
  203. cursor: pointer;
  204. }
  205. // 商品标签
  206. .goods-label {
  207. flex: 1;
  208. display: flex;
  209. align-items: start;
  210. justify-content: start;
  211. }
  212. // 商品价格
  213. .goods-price {
  214. margin-bottom: 1rem;
  215. }
  216. }
  217. }
  218. </style>