修改接口问题

This commit is contained in:
duan
2024-12-31 17:05:26 +08:00
parent 8775b23f6a
commit 3b3e167089
10 changed files with 41 additions and 31 deletions

View File

@@ -257,17 +257,22 @@
})
setTimeout(function() {
uni.switchTab({
url: '/pages/index/index'
url: '/pages/index/index2'
});
}, 1000)
// this.getUserInfo(res.userId, res.token);
} else {
uni.hideLoading();
uni.showModal({
showCancel: false,
title: '注册失败',
content: res.msg
});
setTimeout(function() {
uni.navigateTo({
url: '/pages/login/login'
});
}, 1000)
// uni.showModal({
// showCancel: false,
// title: '注册失败',
// content: res.msg
// });
}
});
},

View File

@@ -269,11 +269,16 @@
}, 1000)
} else {
uni.hideLoading();
uni.showModal({
showCancel: false,
title: '注册失败',
content: res.msg
});
setTimeout(function() {
uni.navigateTo({
url: '/pages/login/login'
});
}, 1000)
// uni.showModal({
// showCancel: false,
// title: '注册失败',
// content: res.msg
// });
}
});
},

View File

@@ -213,7 +213,7 @@
this.courseDetailsId = courseDetailsId
if ( !this.playFlag ) {
this.playFlag = true
httpsRequest.getT('app/course/viewCourse', {
httpsRequest.getT('/app/course/viewCourse', {
courseId: this.courseId,
courseDetailsId: courseDetailsId,
type: 'start'
@@ -229,7 +229,7 @@
if (e.detail.currentTime > e.detail.duration*0.9) {
if ( this.playFlag) {
this.playFlag = false
httpsRequest.getT('app/course/viewCourse', {
httpsRequest.getT('/app/course/viewCourse', {
courseId: this.courseId,
courseDetailsId: this.courseDetailsId,
type: 'end'

View File

@@ -528,7 +528,7 @@
if (e.detail.currentTime > e.detail.duration * 0.9) {
if (this.playFlag) {
this.playFlag = false
this.$Request.getT('app/course/viewCourse', {
this.$Request.getT('/app/course/viewCourse', {
courseId: this.courseId,
courseDetailsId: this.courseDetailsId,
type: 'end'
@@ -916,7 +916,7 @@
},
//在播放时候的回调
videoPlay(videoId) {
this.$Request.getT('app/course/viewCourse', {
this.$Request.getT('/app/course/viewCourse', {
courseId: this.courseId,
courseDetailsId: this.courseDetailsId,
type: 'start'

View File

@@ -209,7 +209,7 @@
this.courseDetailsId = courseDetailsId
if ( !this.playFlag ) {
this.playFlag = true
httpsRequest.getT('app/course/viewCourse', {
httpsRequest.getT('/app/course/viewCourse', {
courseId: this.courseId,
courseDetailsId: courseDetailsId,
type: 'start'
@@ -225,7 +225,7 @@
if (e.detail.currentTime > e.detail.duration*0.9) {
if ( this.playFlag) {
this.playFlag = false
httpsRequest.getT('app/course/viewCourse', {
httpsRequest.getT('/app/course/viewCourse', {
courseId: this.courseId,
courseDetailsId: this.courseDetailsId,
type: 'end'