50 lines
920 B
Vue
50 lines
920 B
Vue
<template>
|
|
<view class="app">
|
|
<view class="cards">
|
|
<view class="item" style="background-color: #9E4DD0;">
|
|
<image src="../../static/user.png" mode=""></image>
|
|
<view class="title">
|
|
个人信息
|
|
</view>
|
|
</view>
|
|
<view class=" item" style="background-color: #E1AE3C ;">
|
|
<image src="../../static/dingdan.png" mode=""></image>
|
|
<view class="title">
|
|
我的订单
|
|
</view>
|
|
</view>
|
|
<view class="item" style="background-color: #00C176 ;">
|
|
<image src="../../static/home.png" mode=""></image>
|
|
<view class="title" style="font-size: 42rpx;">
|
|
我的家庭
|
|
</view>
|
|
</view>
|
|
<view class="item">
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
methods: {},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.app {
|
|
.cards {
|
|
.item {
|
|
height: 295rpx;
|
|
.title {
|
|
width: 80%;
|
|
top: 60%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|