12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <template>
- <view class="application-card">
- <view class="title">
- 申请信息
- </view>
- <view class="_label-1">
- <text>是否收货</text>
- <text class="result">未收货</text>
- </view>
- <view class="_label-1">
- <text>售后说明</text>
- <text class="result">商品未按照规定时间发货,不需要了</text>
- </view>
- <view class="photo">
- <text>图片凭证</text>
- <view class="photo-list">
- <view class="img-1">
-
- </view>
- <view class="img-1">
-
- </view>
- <view class="img-1">
-
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default{
- data(){
- return{
-
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .application-card{
- padding: 28rpx 20rpx;
- background-color: #fff;
- border-radius: 16rpx;
- margin-top: 20rpx;
- margin-bottom: 200rpx;
- .title{
- font-size: 30rpx;
- font-weight: 600;
- color: #333;
- }
- ._label-1{
- display: flex;
- justify-content: space-between;
- font-size: 28rpx;
- color: #232323;
- margin: 20rpx 0;
- .result{
- color: #555;
- }
-
- }
- .photo{
- font-size: 28rpx;
- color: #232323;
- display: flex;
- justify-content: space-between;
- .photo-list{
- display: flex;
- justify-content: space-between;
- .img-1{
- width: 156rpx;
- height: 156rpx;
- border-radius: 10rpx;
- background-color: #D4D4D4;
- margin-left: 16rpx;
- }
- }
- }
- }
- </style>
|