123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <template>
- <view class="content">
- <view class="upload-title">
- 请提供相关截图及描述,以便上级审核(最多两张)
- </view>
- <view class="upload-box">
- <view class="upload-img">
- <image src="../../static/img/upload.png" mode=""></image>
- </view>
- <view class="fenge"></view>
- <view class="upload-content">
- <view class="describe">
- <view class="title">
- 补充描述
- </view>
- <textarea class="title1" value="" placeholder="填写描述" maxlength="140" focus="focus" />
- </view>
- </view>
- </view>
- <view class="submit">
- 提交
- </view>
- </view>
- </template>
- <script>
- import {
- upload
- } from '@/api/user.js'
- export default {
- data() {
- return {
- }
- },
- mrthods: {
- }
- }
- </script>
- <style lang="scss">
- page {
- width: 100%;
- padding: 0;
- margin: 0;
- }
- .content {
-
- .upload-title {
- padding: 30rpx 30rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 28rpx;
- }
- .upload-box {
- width: 100%;
- height: 450rpx;
- background-color: #15130F;
- .upload-img {
- margin: 30rpx;
- padding-top: 30rpx;
- width: 160rpx;
- height: 190rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .fenge {
- width: 100%;
- border: 1rpx solid #F0F0F0;
- }
- .describe {
- display: flex;
-
- margin: 20rpx 30rpx;
- .title {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- }
- .title1 {
- margin-left: 40rpx;
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- }
- }
- }
- .submit{
- margin: 120rpx auto;
- text-align: center;
- line-height: 80rpx;
- width: 560rpx;
- height: 80rpx;
- background: linear-gradient(-74deg, #CE9C6D, #FFECD6);
- border-image: linear-gradient(115deg, #FEEBD5, #FFFFFF, #E1AD7D) 1 1;
- box-shadow: 3rpx 4rpx 5rpx 0rpx rgba(151, 118, 74, 0.5);
- border-radius: 40rpx;
- }
- }
- </style>
|