first commit

This commit is contained in:
编码猿
2024-09-27 01:32:49 +08:00
commit 28ebe05a64
7399 changed files with 1174529 additions and 0 deletions

View File

@@ -0,0 +1 @@
59c5fd67-4518-4cd7-96d2-43b7f7fdfa59

View File

@@ -0,0 +1,23 @@
// component/TabBar/TabBar.js
Component({
/**
* 组件的属性列表
*/
properties: {
},
/**
* 组件的初始数据
*/
data: {
},
/**
* 组件的方法列表
*/
methods: {
}
})

View File

@@ -0,0 +1,4 @@
{
"component": true,
"usingComponents": {}
}

View 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>

View File

@@ -0,0 +1,2 @@
@import "../../extend/ColorUI/css/main.wxss";
@import "../../extend/ColorUI/css/icon.wxss";