Browse Source

教练去掉财务

master
unknown 4 months ago
parent
commit
6e2902941d
  1. 7
      common/css/app.scss
  2. 7
      pages/mineEntry/myAppointment/comp/comp.scss
  3. 2
      pages/mineEntry/myAppointment/comp/opera.vue
  4. 2
      pages/mineEntry/myAppointment/detail/opera.vue
  5. 2
      pages/tabbar/index/comp/coachItem.vue
  6. 3
      pages/tabbar/learnCar/comp/subject2.vue
  7. 1
      pages/tabbar/learnCar/index.vue
  8. 4
      uni.scss

7
common/css/app.scss

@ -74,12 +74,15 @@ image {
width: 58rpx;
height: 32rpx;
line-height: 32rpx;
background: #0A52F4;
background: $tagC;
font-size: 24rpx;
text-align: center;
color: #fff;
border-radius: 16px 0px 16px 16rpx;
}
.pozPhone {
opacity: 0.7;
}
.my .u-input {
height: 100%;
@ -161,3 +164,5 @@ image {
// .uni-input-placeholder {
// color: #BBBBBB !important;
// }

7
pages/mineEntry/myAppointment/comp/comp.scss

@ -15,11 +15,9 @@
.tag {
// width: 176rpx;
height: 60rpx;
background: rgba(250, 149, 25, 0.1);
border-radius: 8rpx;
text-align: center;
font-size: 28rpx;
color: #FA7919;
margin-right: 24rpx;
white-space: nowrap;
padding: 10rpx 18rpx;
@ -27,7 +25,10 @@
background: rgba(144,12,64,0.1) !important;
color: #F158B9 !important;
}
&.tag3 {
color: #FA7919;
background: rgba(250, 149, 25, 0.1);
}
}
.schoolName {

2
pages/mineEntry/myAppointment/comp/opera.vue

@ -3,7 +3,7 @@
<view class="consultItem">
<view class="top_row">
<view class="flex">
<view class="tag" :class="{tag2: item.subject==2}">{{item.subject==2?'科目二实操':item.subject==3?'科目三实操':'不限科目'}}</view>
<view class="tag" :class="{tag2: item.subject==2, tag3: item.subject==3}">{{item.subject==2?'科目二实操':item.subject==3?'科目三实操':'不限科目'}}</view>
<view class="schoolName oneRowText">{{item.siteName}}</view>
</view>
<view class="status">

2
pages/mineEntry/myAppointment/detail/opera.vue

@ -3,7 +3,7 @@
<view class="consultItem">
<view class="top_row">
<view class="flex">
<view class="tag">{{info.subject==2?'科目二实操':info.subject==3?'科目三实操':'不限科目'}}</view>
<view class="tag" :class="{tag2: info.subject==2,tag3: info.subject==3}">{{info.subject==2?'科目二实操':info.subject==3?'科目三实操':'不限科目'}}</view>
<view class="schoolName oneRowText">{{info.siteName}}</view>
</view>
<!-- <view class="text" v-if="info.loginStatus==9">已取消</view>

2
pages/tabbar/index/comp/coachItem.vue

@ -38,7 +38,7 @@
.starBoxBg {
width: 72rpx;
height: 40rpx;
background: #0A52F4;
background: $tagC;
border-radius: 20rpx 0px 20rpx 0px;
font-size: 28rpx;
color: #fff;

3
pages/tabbar/learnCar/comp/subject2.vue

@ -3,7 +3,8 @@
<!-- 学习状态 -->
<view class="learnStatus">
<view class="card mt20" v-if="vuex_userInfo.trainProcess">
<!-- v-if="vuex_userInfo.trainProcess" -->
<view class="card mt20" >
<view class="flex-b">
<view class="lab">实操预约</view>
<view class="link-arrow"

1
pages/tabbar/learnCar/index.vue

@ -42,6 +42,7 @@
this.init()
},
onLoad() {
this.token = this.$store.state.user.vuex_loginInfo.accessToken
if(!this.token) {
this.$store.commit('goLogin')
return this.$u.toast('请先登录')

4
uni.scss

@ -77,4 +77,6 @@ $uni-color-paragraph: #3F536E; // 文章段落颜色
$uni-font-size-paragraph:15px;
// 自已定义的
$themC: #3776FF,
$themC: #3776FF;
$tagC: #0a52f499;
Loading…
Cancel
Save