简体中文
商品加入购物车,立即购买
<template>
<uni-goods-nav :fill="true" :options="options" :buttonGroup="buttonGroup" @click="onClick" @buttonClick="buttonClick" />
</template>
<script>
export default {
data () {
return {
options: [{
icon: 'headphones',
text: '客服'
}, {
icon: 'shop',
text: '店铺',
info: 2,
infoBackgroundColor:'#007aff',
infoColor:"red"
}, {
icon: 'cart',
text: '购物车',
info: 2
}],
buttonGroup: [{
text: '加入购物车',
backgroundColor: '#ff0000',
color: '#fff'
},
{
text: '立即购买',
backgroundColor: '#ffa200',
color: '#fff'
}
]
}
},
methods: {
onClick (e) {
uni.showToast({
title: `点击${e.content.text}`,
icon: 'none'
})
},
buttonClick (e) {
console.log(e)
this.options[2].info++
}
}
}
</script>
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
options | Array | - | 组件参数 |
buttonGroup | Array | - | 组件按钮组参数 |
fill | Boolean | false | 按钮是否平铺 |
options 参数说明:
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
text | String | - | 显示文字 |
icon | String | 图标,参考 | |
info | Number | 0 | 右上角数字角标 |
infoBackgroundColor | String | #ff0000 | 角标背景色 |
infoColor | String | #fff | 角标前景色 |
buttonGroup 参数说明:
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
text | String | - | 按钮文字 |
backgroundColor | String | - | 按钮背景色 |
color | String | - | 字体颜色 |
事件名 | 说明 | 返回值 |
---|---|---|
@click | 左侧点击事件 | e = {index,content} |
@buttonClick | 右侧按钮组点击事件 | e = {index,content} |
注意
示例依赖了 uni-card
uni-section
uni-scss
等多个组件,直接拷贝示例代码将无法正常运行 。
请到 组件下载页面 ,在页面右侧选择 使用 HBuilderX导入示例项目
,体验完整组件示例。
Template
Script
Style
<template>
<view class="uni-container">
<uni-card is-full>
<text class="uni-h6"> uni-goods-nav 组件主要用于电商类应用底部导航,可自定义加入购物车,购买等操作</text>
</uni-card>
<uni-section title="基础用法" type="line">
<uni-goods-nav @click="onClick" />
</uni-section>
<uni-section title="自定义用法" type="line">
<uni-goods-nav :fill="true" :options="options" :button-group="customButtonGroup" @click="onClick"
@buttonClick="buttonClick" />
<uni-goods-nav :fill="true" :options="options" :button-group="customButtonGroup1" @click="onClick"
@buttonClick="buttonClick" style="margin-top: 20px;" />
</uni-section>
<view class="goods-carts">
<uni-goods-nav :options="options" :fill="true" :button-group="buttonGroup" @click="onClick"
@buttonClick="buttonClick" />
</view>
</view>
</template>