猫妈狗爸伴宠师小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

37 lines
576 B

<template>
<view class="box">
<view class="flex-rowl">
<view class="size-28 color-ffb fw700 tab">
全部记录
</view>
</view>
<view class="flex-rowc">
<image src="@/static/images/ydd/empy.png" mode="widthFix"></image>
</view>
</view>
<view class="footer" @click="toUp">
立即上传
</view>
</template>
<script setup>
const toUp = () => {
}
</script>
<style lang="scss" scoped>
.box {
padding: 24rpx;
.tab {
border-bottom: 4rpx solid #FFBF60;
}
}
image {
width: 250rpx;
background-color: #fff;
margin-top: 20vh;
}
</style>