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