赞
踩
本博客为 uni-app 此门课的跟学笔记,目的是便于个人复习和对知识快速索引,源码素材可在均可在视频评论区找到
<script>
// 导入,再注册,然后直接uni-goods-nav引用即可
import uniGoodsNav from '../../uni_modules/uni-goods-nav/components/uni-goods-nav/uni-goods-nav.vue'
export default {
data() {
return {
// 注册该组件
components: {
uniGoodsNav
},
}
}
</script>
uni-ui组件库例程链接:uni-app官网 (dcloud.net.cn)
<template> <view class="goods_detail"> <!-- 基于uni-ui库开发就是简单嗷 --> <view class="goods_nav"> <uni-goods-nav :fill="true" :options="options" :buttonGroup="buttonGroup" @click="onClick" @buttonClick="buttonClick" /> </view> </view> </template> <script> // 导入,再注册,然后直接uni-goods-nav引用即可 import uniGoodsNav from '../../uni_modules/uni-goods-nav/components/uni-goods-nav/uni-goods-nav.vue' 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) { console.log(e); // 打印事件会发现,区分点击事物在于index uni.showToast({ title: `点击${e.content.text}`, icon: 'none' }) }, // 商品导航栏的(加入购物车/立即购买) buttonClick(e) { console.log(e) // 打印事件会发现,区分加入购物车和立即购买在于index this.options[2].info++ } }, components: { uniGoodsNav } } </script> <style lang="scss"> </style>
在项目开发完成后,我们要对项目进行打包和上传
同样在manifest.json中进行配置,基础配置到web配置之前都是App的配置,我们一个一个看
基础配置,配置APP的基础描述信息
其他几个配置视情况而定
配置完成后发行→原生APP云打包
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。