加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 992 Bytes
一键复制 编辑 原始数据 按行查看 历史
游志金 提交于 2020-06-16 15:48 . 6/16
<script>
export default {
mounted() {
// uni.setTabBarItem({
// index: 2,
// text: '对话',
// iconPath: 'static/i1.png',
// selectedIconPath: 'static/i2.png'
// })
},
onLaunch: function() { //APP 初始化完成
uni.onTabBarMidButtonTap(function(e){
console.log("点击了")
uni.navigateTo({
url:"/pages/jiandang4/jiandang4"
})
})
console.log('App Launch')
},
}
</script>
<style lang="scss">
@import "colorui/main.css";
@import "colorui/icon.css";
.all_btn{
height:88rpx;
background:#4185F5;
border-radius:10rpx;
font-size:34rpx !important;
font-family:PingFang SC !important;
font-weight:500 !important;
color:rgba(255,255,255,1) !important;
display: flex;
justify-content: center !important;
align-items: center !important;
}
uni-swiper .uni-swiper-dot-active{
background-color: #6fa6ee;
width: 28rpx;
height: 16rpx;
border-radius: 20rpx;
}
page{
background: #FFFFFF;
}
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化