42 lines
870 B
Vue
42 lines
870 B
Vue
<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>
|