first commit
This commit is contained in:
1
衣莎项目/源码/YiShaXiYi/component/TabBar/.pydio
Normal file
1
衣莎项目/源码/YiShaXiYi/component/TabBar/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
59c5fd67-4518-4cd7-96d2-43b7f7fdfa59
|
||||
23
衣莎项目/源码/YiShaXiYi/component/TabBar/TabBar.js
Normal file
23
衣莎项目/源码/YiShaXiYi/component/TabBar/TabBar.js
Normal file
@@ -0,0 +1,23 @@
|
||||
// component/TabBar/TabBar.js
|
||||
Component({
|
||||
/**
|
||||
* 组件的属性列表
|
||||
*/
|
||||
properties: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 组件的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 组件的方法列表
|
||||
*/
|
||||
methods: {
|
||||
|
||||
}
|
||||
})
|
||||
4
衣莎项目/源码/YiShaXiYi/component/TabBar/TabBar.json
Normal file
4
衣莎项目/源码/YiShaXiYi/component/TabBar/TabBar.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {}
|
||||
}
|
||||
32
衣莎项目/源码/YiShaXiYi/component/TabBar/TabBar.wxml
Normal file
32
衣莎项目/源码/YiShaXiYi/component/TabBar/TabBar.wxml
Normal file
@@ -0,0 +1,32 @@
|
||||
<!-- component/TabBar/TabBar.wxml -->
|
||||
<!-- tabbar -->
|
||||
<view class="TabBar">
|
||||
<view class="cu-bar tabbar bg-white">
|
||||
<view data-index="1" bind:tap="tabSwitch" class="action {{index == 1?'text-green':'text-gray'}}">
|
||||
<view class="cuIcon-homefill"></view>
|
||||
首页
|
||||
</view>
|
||||
<view data-index="2" bind:tap="tabSwitch" class="action {{index == 2?'text-green':'text-gray'}}">
|
||||
<view class="cuIcon-similar"></view>
|
||||
价目表
|
||||
</view>
|
||||
<view data-index="3" bind:tap="tabSwitch" class="action {{index == 3?'text-green':'text-gray'}} add-action">
|
||||
<view class="live">
|
||||
<view class="my-icno">
|
||||
<image src="/static/img/icon/asdferfhrthjtr.png" />
|
||||
</view>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</view>
|
||||
一键下单
|
||||
</view>
|
||||
<view data-index="4" bind:tap="tabSwitch" class="action {{index == 4?'text-green':'text-gray'}}">
|
||||
<view class="cuIcon-cart"></view>
|
||||
商城
|
||||
</view>
|
||||
<view data-index="5" bind:tap="tabSwitch" class="action {{index == 5?'text-green':'text-gray'}}">
|
||||
<view class="cuIcon-my"></view>
|
||||
我的
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
2
衣莎项目/源码/YiShaXiYi/component/TabBar/TabBar.wxss
Normal file
2
衣莎项目/源码/YiShaXiYi/component/TabBar/TabBar.wxss
Normal file
@@ -0,0 +1,2 @@
|
||||
@import "../../extend/ColorUI/css/main.wxss";
|
||||
@import "../../extend/ColorUI/css/icon.wxss";
|
||||
Reference in New Issue
Block a user