连云港陪玩陪聊
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chunwan/pages/users/feedback/detail.vue

83 lines
1.5 KiB

<template>
<view class="feed">
<view class="content">
<view class="item">
<view class="fl">反馈类型</view>
<view class="fr">界面</view>
</view>
<view class="item">
<view class="fl">问题分类</view>
<view class="fr">体验不好</view>
</view>
<view class="item">
<view class="fl">姓名</view>
<view class="fr"></view>
</view>
<view class="item">
<view class="fl">电话/邮箱</view>
<view class="fr">13078980980</view>
</view>
<view class="items">
<view class="fl">体验不好</view>
<view class="fr">
<image v-for="i in 4" :key="i" src="@/static/pic.jpg"></image>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style scoped lang="scss">
.feed{
padding: 0 25rpx;
overflow: hidden;
.content{
margin-top: 20rpx;
background: #FFFFFF;
border-radius: 20rpx;
padding: 20rpx 0;
.item{
display: flex;
align-items: center;
justify-content: space-between;
padding: 20rpx 30rpx;
.fl{
flex: 1;
font-weight: 500;
font-size: 28rpx;
color: #333333;
}
.fr{
font-weight: 500;
font-size: 28rpx;
color: #999999;
}
}
.items{
padding: 20rpx 30rpx;
border-top: 1px solid #EAEAEA;
margin-top: 20rpx;
.fr{
width: 110%;
image{
width: 200rpx;
height: 200rpx;
border-radius: 10rpx;
margin-top: 20rpx;
margin-right: 20rpx;
}
}
}
}
}
</style>