This commit is contained in:
xyc 2025-04-17 10:02:46 +08:00
parent f4e040e0a8
commit b0e2af62e3
4 changed files with 168 additions and 157 deletions

View File

@ -7,7 +7,7 @@
</view> </view>
<view class="group_4 flex-col"> <view class="group_4 flex-col">
<image style="width: 100%; height: 100%;" referrerpolicy="no-referrer" <image style="width: 100%; height: 100%;" referrerpolicy="no-referrer"
:src="imagesUrl + '/' + schoolInfo.photo" /> :src="imagesUrl + '/' + schoolInfo.photo" v-if="schoolInfo.photo" />
<!-- src="/static/lanhu_jiaxiaoxiangqing/FigmaDDSSlicePNGcd54efcc9a8c89af0ef99c8275464828.png" --> <!-- src="/static/lanhu_jiaxiaoxiangqing/FigmaDDSSlicePNGcd54efcc9a8c89af0ef99c8275464828.png" -->
</view> </view>
<view class="group_5 flex-col"> <view class="group_5 flex-col">
@ -276,7 +276,9 @@
// //
const sortedList = res.data.records.sort((a, b) => b.seniority - a.seniority); const sortedList = res.data.records.sort((a, b) => b.seniority - a.seniority);
const coachId = auth.getCoachId() const coachId = auth.getCoachId()
const staffType = auth.getStaffType()
console.log(coachId, 'coachId'); console.log(coachId, 'coachId');
if (coachId && staffType === '02') {
const coach = res.data.records.find(item => item.userId == coachId) const coach = res.data.records.find(item => item.userId == coachId)
console.log(coach, 'coach'); console.log(coach, 'coach');
if (coach) { if (coach) {
@ -286,6 +288,11 @@
this.schoolCoachList = sortedList.slice(0, 3); this.schoolCoachList = sortedList.slice(0, 3);
this.total = res.data.total; this.total = res.data.total;
} }
} else {
//
this.schoolCoachList = sortedList.slice(0, 3);
this.total = res.data.total;
}
}).catch(e => { }).catch(e => {
console.log(e); console.log(e);
}) })

View File

@ -158,7 +158,7 @@
setTimeout(function() { setTimeout(function() {
// //
uni.navigateTo({ uni.switchTab({
url: '/newPages/newIndex/index' url: '/newPages/newIndex/index'
}) })
}, 2600); // 30003 }, 2600); // 30003

View File

@ -6,10 +6,11 @@
</headers> </headers>
</view> </view>
<view class="group_3 flex-col"> <view class="group_3 flex-col">
<image <image style="width: 100%; height: 100%;" :src="imagesUrl + '/' + courseDetails.photo"
style="width: 100%; height: 100%;" v-if="courseDetails.photo" />
:src="imagesUrl + '/' + courseDetails.photo" <u-empty mode="data" text='暂无图片' v-else>
/> </u-empty>
</view> </view>
<view class="group_4 flex-col"> <view class="group_4 flex-col">
<view class="section_2 flex-row justify-between"> <view class="section_2 flex-row justify-between">
@ -17,7 +18,7 @@
<text class="text_3"></text> <text class="text_3"></text>
<text class="text_4">{{ courseDetails.price ? courseDetails.price.toFixed(2) : '--' }}</text> <text class="text_4">{{ courseDetails.price ? courseDetails.price.toFixed(2) : '--' }}</text>
</view> </view>
<!-- <text class="text_5">3000.00</text>--> <!-- <text class="text_5">3000.00</text>-->
</view> </view>
<text class="text_6">{{ courseDetails.name }}</text> <text class="text_6">{{ courseDetails.name }}</text>
<view class="section_3 flex-row justify-between"> <view class="section_3 flex-row justify-between">
@ -39,20 +40,14 @@
<u-parse :content="courseDetails.remark"></u-parse> <u-parse :content="courseDetails.remark"></u-parse>
</view> </view>
<view class="u-content" v-else> <view class="u-content" v-else>
<u-empty <u-empty mode="list" text="该课程没有简介...">
mode="list"
text="该课程没有简介..."
>
</u-empty> </u-empty>
</view> </view>
</view> </view>
<view class="group_6 flex-row"> <view class="group_6 flex-row">
<view class="image-text_1 flex-col justify-between" @click="zxkf()"> <view class="image-text_1 flex-col justify-between" @click="zxkf()">
<image <image class="label_2" referrerpolicy="no-referrer"
class="label_2" src="/static/lanhu_kechengxiangqing/FigmaDDSSlicePNG283b4603035848d5dcc7209d10653327.png" />
referrerpolicy="no-referrer"
src="/static/lanhu_kechengxiangqing/FigmaDDSSlicePNG283b4603035848d5dcc7209d10653327.png"
/>
<text class="text-group_1">咨询客服</text> <text class="text-group_1">咨询客服</text>
</view> </view>
<view class="text-wrapper_4 flex-col" @click="goRegisterNow()"> <view class="text-wrapper_4 flex-col" @click="goRegisterNow()">
@ -62,13 +57,19 @@
</view> </view>
</template> </template>
<script> <script>
import request from "@/utils/request"; import request from "@/utils/request";
import config from "@/config.js" import config from "@/config.js"
import {getLocalUserInfo, getUserInfo, getToken} from "@/utils/auth"; import {
import headers from "@/components/header/headers.vue"; getLocalUserInfo,
getUserInfo,
getToken
} from "@/utils/auth";
import headers from "@/components/header/headers.vue";
export default { export default {
components: {headers}, components: {
headers
},
data() { data() {
return { return {
courseId: undefined, courseId: undefined,
@ -123,7 +124,7 @@ export default {
}, },
goRegisterNow() { goRegisterNow() {
console.log('token',getToken()) console.log('token', getToken())
if (!getToken()) { if (!getToken()) {
uni.showModal({ uni.showModal({
title: '未登录', title: '未登录',
@ -145,13 +146,14 @@ export default {
}); });
}, },
} }
}; };
</script> </script>
<style lang='scss'> <style lang='scss'>
@import '../common/common.scss'; @import '../common/common.scss';
@import './assets/style/index.rpx.scss'; @import './assets/style/index.rpx.scss';
.u-content{
.u-content {
margin-top: 20rpx; margin-top: 20rpx;
padding: 10rpx; padding: 10rpx;
} }
</style> </style>

View File

@ -4,7 +4,7 @@
<!-- #ifdef MP-WEIXIN --> <!-- #ifdef MP-WEIXIN -->
<!-- #ifdef MP-WEIXIN --> <!-- #ifdef MP-WEIXIN -->
<headers :titles="titles"> <headers :titles="titles">
<uni-icons @click="goback()" type="left" color="#000000" size="22px"></uni-icons> <uni-icons type="left" color="#000000" size="22px"></uni-icons>
</headers> </headers>
<!-- #endif --> <!-- #endif -->
<!-- #endif --> <!-- #endif -->
@ -248,8 +248,10 @@
this.tenantId = option.tenantId this.tenantId = option.tenantId
this.userinfo = getLocalUserInfo() this.userinfo = getLocalUserInfo()
this.localStaffType = getStaffType() this.localStaffType = getStaffType()
if (this.localStaffType === '02') {
this.localCoachId = getCoachId() this.localCoachId = getCoachId()
console.log('localCoachId', this.localCoachId); console.log('localCoachId', this.localCoachId);
}
}, },
onShow() { onShow() {
this.getListAll() this.getListAll()