Commit f5dededf authored by 罗超's avatar 罗超

1

parent 5fd5a770
......@@ -17,7 +17,9 @@
<view class="feedback-info flex flex_start_center">
<image :src="item.TeacherIcon" class="info-headimg" />
<view class="grow">
<view class="teacher-name">{{ item.TeacherName }}</view>
<view class="teacher-name" v-if="item.TeacherName">{{
item.TeacherName
}}</view>
<view class="rate">
<van-rate
:value="item.Score"
......@@ -156,6 +158,7 @@ export default {
/* height: 430rpx; */
box-sizing: border-box;
padding: 30rpx 0;
border-bottom: 1px solid #e2e2e2;
}
.feedback-info {
height: 60rpx;
......
......@@ -77,9 +77,11 @@
class="info-headimg"
/>
<view class="grow">
<view class="teacher-name">{{
indexData.FeedBackList[0].TeacherName
}}</view>
<view
class="teacher-name"
v-if="indexData.FeedBackList[0].TeacherName"
>{{ indexData.FeedBackList[0].TeacherName }}</view
>
<view class="rate">
<van-rate
:value="indexData.FeedBackList[0].Score"
......@@ -344,7 +346,7 @@ export default {
desc: "정원",
bgcolor: "#FEF5D6",
img: "https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/educationStu/garden2.png",
jumpUrl: "/pages/course/feedback",
jumpUrl: "",
},
],
indicatorDots: true, //是否显示轮播指示点
......@@ -832,7 +834,7 @@ export default {
height: 250rpx;
border-radius: 20rpx;
margin-bottom: 30rpx;
overflow: hidden;
/* overflow: hidden; */
}
.swiperList {
......@@ -857,11 +859,16 @@ export default {
bottom: 45rpx;
left: 30rpx;
}
/* .swiper /deep/ .wx-swiper-dots{
position: relative;
right:-380px;
top:20px;
} */
.swiper {
position: relative;
}
/* .swiper /deep/ .wx-swiper-dots {
position: absolute;
right: -10rpx;
top: 50%;
transform: translateY(-50%);
z-index: 999;
} */
.swiper /deep/ .wx-swiper-dot {
width: 10rpx;
height: 10rpx;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment