42 lines
768 B
Vue
42 lines
768 B
Vue
<template>
|
|
<view class="towcontent flex-between">
|
|
<view class="towcontent_item flex-colum" v-for="(item,index) in 5" :key="index">
|
|
<image src="@/static/avatar.png" mode="aspectFill"></image>
|
|
<text>扫码点餐</text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.towcontent {
|
|
position: relative;
|
|
margin-top: -32rpx;
|
|
padding: 32rpx 40rpx;
|
|
width: 100%;
|
|
background: #F9F9F9;
|
|
border-radius: 48rpx 48rpx 0rpx 0rpx;
|
|
|
|
.towcontent_item {
|
|
image {
|
|
width: 92rpx;
|
|
height: 92rpx;
|
|
}
|
|
|
|
text {
|
|
margin-top: 16rpx;
|
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
|
font-weight: 400;
|
|
font-size: 28rpx;
|
|
color: #333333;
|
|
}
|
|
}
|
|
}
|
|
</style> |