我的页面

This commit is contained in:
杨鹏
2025-09-11 17:38:24 +08:00
parent a0f751c2c0
commit 04833ef1bc
7 changed files with 366 additions and 7 deletions
+41
View File
@@ -0,0 +1,41 @@
<template>
<view>
<s-layout :bgStyle="{ color: '#fff' }">
<view class="img-box"></view>
<view class="btn-box">
<view class="btn">删除</view>
<view class="btn">分享</view>
<view class="btn">下载</view>
</view>
</s-layout>
</view>
</template>
<script setup></script>
<style lang="scss" scoped>
.img-box {
width: 100%;
box-sizing: border-box;
width: 724rpx;
height: 1046rpx;
border: 1rpx solid #000;
margin: 0 auto;
margin-top: 100rpx;
}
.btn-box {
width: 100%;
margin-top: 100rpx;
display: flex;
align-items: center;
justify-content: space-around;
.btn {
width: 188rpx;
height: 80rpx;
line-height: 80rpx;
background: #000;
color: #fff;
text-align: center;
}
}
</style>