123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <view class="container">
- <image class="img" src="../../static/img/img34.png" mode="scaleToFill"></image>
- <view class="text">提交成功</view>
- <view class="btm">
- <view class="btn">返回首页</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data () {
- return {}
- },
- methods: {}
- }
- </script>
- <style lang="scss">
- .container {
- background-color: #fff;
- width: 750rpx;
- height: 1334rpx;
- .img {
- width: 300rpx;
- height: 250rpx;
- margin-top: 200rpx;
- margin-left: 210rpx;
- }
- .text {
- font-size: 40rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- line-height: 40rpx;
- padding-left: 300rpx;
- }
- .btm {
- width: 350rpx;
- height: 80rpx;
- background: #6EAB4E;
- border-radius: 40rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-left: 200rpx;
- margin-top: 90rpx;
- .btn {
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- }
- }
- }
- </style>
|