Vant GoodsAction 商品導航

2022-05-31 13:41 更新

引入

import Vue from 'vue';
import { GoodsAction, GoodsActionIcon, GoodsActionButton } from 'vant';

Vue.use(GoodsAction);
Vue.use(GoodsActionButton);
Vue.use(GoodsActionIcon);

代碼演示

基礎(chǔ)用法

<van-goods-action>
  <van-goods-action-icon icon="chat-o" text="客服" @click="onClickIcon" />
  <van-goods-action-icon icon="cart-o" text="購物車" @click="onClickIcon" />
  <van-goods-action-button type="warning" text="加入購物車" @click="onClickButton" />
  <van-goods-action-button type="danger" text="立即購買" @click="onClickButton" />
</van-goods-action>
import { Toast } from 'vant';

export default {
  methods: {
    onClickIcon() {
      Toast('點擊圖標');
    },
    onClickButton() {
      Toast('點擊按鈕');
    }
  }
}

徽標提示

通過info屬性在圖標右上角顯示徽標

<van-goods-action>
  <van-goods-action-icon icon="chat-o" text="客服" />
  <van-goods-action-icon icon="cart-o" text="購物車" info="5" />
  <van-goods-action-icon icon="shop-o" text="店鋪" info="12" />
  <van-goods-action-button type="warning" text="加入購物車" />
  <van-goods-action-button type="danger" text="立即購買" />
</van-goods-action>

自定義圖標顏色

通過 GoodsActionIcon 的color屬性可以自定義圖標的顏色

<van-goods-action>
  <van-goods-action-icon icon="chat-o" text="客服" color="#07c160" />
  <van-goods-action-icon icon="cart-o" text="購物車" />
  <van-goods-action-icon icon="star" text="已收藏" color="#ff5000" />
  <van-goods-action-button type="warning" text="加入購物車" />
  <van-goods-action-button type="danger" text="立即購買" />
</van-goods-action>

自定義按鈕顏色

通過 GoodsActionButton 的color屬性可以自定義按鈕的顏色,支持傳入linear-gradient漸變色

<van-goods-action>
  <van-goods-action-icon icon="chat-o" text="客服" />
  <van-goods-action-icon icon="shop-o" text="店鋪" />
  <van-goods-action-button color="#be99ff" type="warning" text="加入購物車" />
  <van-goods-action-button color="#7232dd" type="danger" text="立即購買" />
</van-goods-action>

API

GoodsAction Props

參數(shù)說明類型默認值
safe-area-inset-bottom是否開啟 底部安全區(qū)適配booleanfalse

GoodsActionIcon Props

參數(shù)說明類型默認值
text按鈕文字string-
icon圖標string-
color v2.4.2圖標顏色string#323233
icon-class圖標額外類名any-
info圖標右上角徽標的內(nèi)容number | string-
url點擊后跳轉(zhuǎn)的鏈接地址string-
to點擊后跳轉(zhuǎn)的目標路由對象,同 vue-router 的 to 屬性string | object-
replace是否在跳轉(zhuǎn)時替換當前頁面歷史booleanfalse

GoodsActionButton Props

參數(shù)說明類型默認值
text按鈕文字string-
type按鈕類型,可選值為 primary info warning dangerstringdefault
color v2.1.8按鈕顏色,支持傳入linear-gradient漸變色string-
icon v2.4.4左側(cè) 圖標名稱 或圖片鏈接string-
disabled是否禁用按鈕booleanfalse
loading是否顯示為加載狀態(tài)booleanfalse
url點擊后跳轉(zhuǎn)的鏈接地址string-
to點擊后跳轉(zhuǎn)的目標路由對象,同 vue-router 的 to 屬性string | object-
replace是否在跳轉(zhuǎn)時替換當前頁面歷史booleanfalse

GoodsActionIcon Slots

名稱說明
default文本內(nèi)容
icon自定義圖標

GoodsActionButton Slots

名稱說明
default按鈕顯示內(nèi)容


實例演示

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號