This commit is contained in:
杨航
2025-12-05 14:03:16 +08:00
parent 62f335270f
commit ffe3df7a9e
2 changed files with 7 additions and 3 deletions
+2 -2
View File
@@ -2,10 +2,10 @@
ENV = 'development.yh' ENV = 'development.yh'
# 'development.yh' # 'development.yh'
# VITE_APP_BASE_H5_API_Url = 'http://25.18.122.65:7001' VITE_APP_BASE_H5_API_Url = 'http://25.18.122.65:7001'
# VITE_APP_BASE_H5_API_Url = 'http://25.18.122.91:9786' # VITE_APP_BASE_H5_API_Url = 'http://25.18.122.91:9786'
VITE_APP_BASE_H5_API_Url = 'http://25.18.122.78:9786' # VITE_APP_BASE_H5_API_Url = 'http://25.18.122.78:9786'
# VITE_APP_BASE_API_Url = 'https://aitstest.jlbank.com.cn:7002' # VITE_APP_BASE_API_Url = 'https://aitstest.jlbank.com.cn:7002'
# VITE_APP_BASE_H5_API_Url_TRAEXAM = 'http://25.64.32.154:9604' # VITE_APP_BASE_H5_API_Url_TRAEXAM = 'http://25.64.32.154:9604'
# VITE_APP_BASE_H5_API_Url_TRAPRACTICE = 'http://25.64.32.156:9603' # VITE_APP_BASE_H5_API_Url_TRAPRACTICE = 'http://25.64.32.156:9603'
+5 -1
View File
@@ -18,7 +18,8 @@
</view> </view>
<view class="body-top-item"> 已陪练次数{{ detailInfo.practiceTimes }} </view> <view class="body-top-item"> 已陪练次数{{ detailInfo.practiceTimes }} </view>
<view class="body-top-item"> 类型{{ detailInfo.traInterTypDesc }} </view> <view class="body-top-item"> 类型{{ detailInfo.traInterTypDesc }} </view>
<view class="body-top-item"> 截止时间{{detailInfo.limitTyp === '01' ? '不限制' : detailInfo.endTm}}</view> <view :class="['body-top-item',detailInfo.limitTyp === '01'?'':'full' ]"> 截止时间{{detailInfo.limitTyp === '01' ? '不限制' : detailInfo.endTm}}</view>
<view class="body-top-item"> 通过分数{{detailInfo.passGrade || 0}} </view>
<scroll-view class="body-top-tags" :scroll-x="true"> <scroll-view class="body-top-tags" :scroll-x="true">
<view class="item-tag-view"> <view class="item-tag-view">
<view class="item-tag active-tag" v-for="item in detailInfo.traPartnerTagList || []"> <view class="item-tag active-tag" v-for="item in detailInfo.traPartnerTagList || []">
@@ -296,6 +297,9 @@
display: inline-block; display: inline-block;
width: 50%; width: 50%;
margin-bottom: 15rpx; margin-bottom: 15rpx;
&.full{
width: 100%;
}
} }
&-tags { &-tags {