Browse Source

修改忽略文件

master
王泽彦 9 months ago
parent
commit
712d733d2c
  1. 130
      uniapp/pages/market/clue/clue_info.vue

130
uniapp/pages/market/clue/clue_info.vue

@ -233,12 +233,12 @@
</uni-popup> </uni-popup>
<!-- 教练配置编辑弹窗 --> <!-- 教练配置编辑弹窗 -->
<uni-popup ref="courseEditPopup" type="dialog"> <uni-popup ref="courseEditPopup" type="center">
<uni-popup-dialog <view class="popup-container">
title="修改教练配置" <view class="popup-header">
:before-close="true" <view class="popup-title">修改教练配置</view>
@confirm="confirmCourseEdit" <view class="popup-close" @click="closeCourseEdit"></view>
@close="closeCourseEdit"> </view>
<view class="course-edit-container"> <view class="course-edit-container">
<view class="edit-section"> <view class="edit-section">
<view class="section-title">主教练单选</view> <view class="section-title">主教练单选</view>
@ -285,7 +285,11 @@
</view> </view>
</view> </view>
</view> </view>
</uni-popup-dialog> <view class="popup-footer">
<view class="popup-btn cancel-btn" @click="closeCourseEdit">取消</view>
<view class="popup-btn confirm-btn" @click="confirmCourseEdit">确认</view>
</view>
</view>
</uni-popup> </uni-popup>
</view> </view>
</view> </view>
@ -1571,55 +1575,133 @@
} }
// //
.popup-container {
width: 90vw;
max-width: 600rpx;
background: #fff;
border-radius: 20rpx;
box-shadow: 0 10rpx 40rpx rgba(0, 0, 0, 0.3);
overflow: hidden;
}
.popup-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 30rpx 40rpx;
background: #29d3b4;
color: #fff;
}
.popup-title {
font-size: 36rpx;
font-weight: bold;
}
.popup-close {
font-size: 40rpx;
width: 60rpx;
height: 60rpx;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: rgba(255, 255, 255, 0.2);
}
.popup-footer {
display: flex;
border-top: 1px solid #eee;
}
.popup-btn {
flex: 1;
padding: 30rpx;
text-align: center;
font-size: 32rpx;
font-weight: bold;
}
.cancel-btn {
color: #666;
border-right: 1px solid #eee;
}
.confirm-btn {
color: #29d3b4;
}
.popup-btn:active {
background: #f5f5f5;
}
.course-edit-container { .course-edit-container {
max-height: 600rpx; width: 100%;
max-height: 60vh;
overflow-y: auto; overflow-y: auto;
padding: 20rpx 0; padding: 30rpx 20rpx;
box-sizing: border-box;
} }
.edit-section { .edit-section {
margin-bottom: 30rpx; margin-bottom: 40rpx;
width: 100%;
} }
.section-title { .section-title {
font-size: 30rpx; font-size: 32rpx;
font-weight: bold; font-weight: bold;
color: #333; color: #333;
margin-bottom: 15rpx; margin-bottom: 20rpx;
padding-bottom: 10rpx; padding-bottom: 15rpx;
border-bottom: 1px solid #eee; border-bottom: 2px solid #29d3b4;
} }
.coach-list { .coach-list {
max-height: 200rpx; width: 100%;
max-height: 300rpx;
overflow-y: auto; overflow-y: auto;
border: 1px solid #eee;
border-radius: 12rpx;
background: #fff;
} }
.coach-item { .coach-item {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
padding: 15rpx 20rpx; padding: 25rpx 30rpx;
border: 1px solid #ddd; border-bottom: 1px solid #f0f0f0;
border-radius: 8rpx; background: #fff;
margin-bottom: 10rpx;
background: #f8f8f8;
transition: all 0.3s ease; transition: all 0.3s ease;
min-height: 80rpx;
box-sizing: border-box;
}
.coach-item:last-child {
border-bottom: none;
} }
.coach-item.selected { .coach-item.selected {
background: #e8f5e8; background: #f0f9ff;
border-color: #29d3b4; border-left: 4rpx solid #29d3b4;
}
.coach-item:active {
background: #f5f5f5;
} }
.coach-name { .coach-name {
font-size: 28rpx; font-size: 30rpx;
color: #333; color: #333;
flex: 1;
} }
.coach-check { .coach-check {
color: #29d3b4; color: #29d3b4;
font-size: 32rpx; font-size: 36rpx;
font-weight: bold; font-weight: bold;
width: 40rpx;
text-align: center;
} }
</style> </style>
Loading…
Cancel
Save