47 lines
1.1 KiB
Vue
47 lines
1.1 KiB
Vue
<template>
|
|
<view>
|
|
<scroll-view scroll-y class="page">
|
|
<cu-custom class="bg-gradual-pink" :isBack="true"><block slot="backText">返回</block><block slot="content">首页</block></cu-custom>
|
|
<view class="box">
|
|
<view class="box">
|
|
<view class="cu-bar tabbar bg-white">
|
|
<view class="action">
|
|
<view class="cuIcon-cu-image">
|
|
<image src="/static/tabbar/basics_cur.png"></image>
|
|
</view>
|
|
<view class="text-green">概览</view>
|
|
</view>
|
|
<view class="action">
|
|
<view class="cuIcon-cu-image">
|
|
<image src="/static/tabbar/component.png"></image>
|
|
</view>
|
|
<view class="text-gray">追溯</view>
|
|
</view>
|
|
<view class="action">
|
|
<view class="cuIcon-cu-image">
|
|
<image src="/static/tabbar/about.png"></image>
|
|
<view class="cu-tag badge"></view>
|
|
</view>
|
|
<view class="text-gray">我的</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
</script>
|
|
|
|
<style>
|
|
.page {
|
|
width: 100vw;
|
|
height: 100Vh;
|
|
}
|
|
|
|
.box {
|
|
margin: 20upx 0;
|
|
}
|
|
</style>
|