bug修复

This commit is contained in:
@fawn-nine
2023-11-20 17:31:10 +08:00
parent 79fb0c430f
commit 31b73967a3
4 changed files with 151 additions and 119 deletions

View File

@@ -6,8 +6,8 @@ if (process.env.NODE_ENV === 'development') {
// socketUrl = "ws://localhost:6001/"; // socketUrl = "ws://localhost:6001/";
// baseUrl = "https://twin-ui.com/demo/"; // baseUrl = "https://twin-ui.com/demo/";
// baseUrl = "http://59.110.212.44:9200/pb/"; // baseUrl = "http://59.110.212.44:9200/pb/";
baseUrl = "https://testapi.nuttyreading.com/"; // 线上测试环境 // baseUrl = "https://testapi.nuttyreading.com/"; // 线上测试环境
// baseUrl = "https://api.nuttyreading.com/"; // 线上正式 baseUrl = "https://api.nuttyreading.com/"; // 线上正式
// baseUrl = "http://192.168.110.100:9100/pb/"; // 开发用电脑 // baseUrl = "http://192.168.110.100:9100/pb/"; // 开发用电脑
// baseUrl = "http://192.168.110.110:9200/pb/"; // baseUrl = "http://192.168.110.110:9200/pb/";
// baseUrl = "http://192.168.110.38:9200/pb/"; // 吴春磊笔记本1 // baseUrl = "http://192.168.110.38:9200/pb/"; // 吴春磊笔记本1

View File

@@ -224,7 +224,7 @@
// 去讲书 // 去讲书
goJiangShu(){ goJiangShu(){
uni.navigateTo({ uni.navigateTo({
url: '../talkBook/talkBookDetail?bookId='+ this.bookId url: '../talkBook/talkBookML?bookid='+ this.bookId
}); });
}, },
// 去听书 // 去听书

View File

@@ -53,7 +53,9 @@
import $http from '@/config/requestConfig.js'; import $http from '@/config/requestConfig.js';
// import emotion from '@/bkhumor-emojiplus/components/bkhumor-emojiplus/bkhumor-emojiplus.vue'; // import emotion from '@/bkhumor-emojiplus/components/bkhumor-emojiplus/bkhumor-emojiplus.vue';
import musicPlay from '@/components/music.vue' import musicPlay from '@/components/music.vue'
import { data } from 'jquery'; import {
data
} from 'jquery';
import { import {
mapState mapState
} from 'vuex'; } from 'vuex';
@@ -178,10 +180,18 @@ import { data } from 'jquery';
}, },
// 书评详情 // 书评详情
toDetail(val) { toDetail(val) {
console.log(val,'val') // console.log(val,'val')
if (this.contentShow == 1) {
uni.navigateTo({ uni.navigateTo({
url: './talkBookML?bookid=' + val.id url: './talkBookML?bookid=' + val.id
}) })
}
if (this.contentShow == 2) {
uni.navigateTo({
url: '../eBook/bookContent?Id=' + val.id
});
}
}, },
@@ -219,12 +229,24 @@ import { data } from 'jquery';
margin-right: 20rpx; margin-right: 20rpx;
} }
} }
.tip { .tip {
padding: 20rpx; background-color: #fff; padding: 20rpx;
text{ font-size: 36rpx;} background-color: #fff;
text {
font-size: 36rpx;
} }
.flexbox{display: flex;} }
.container{padding: 10px;}
.flexbox {
display: flex;
}
.container {
padding: 10px;
}
.bookName { .bookName {
white-space: nowrap; white-space: nowrap;
overflow-x: hidden; overflow-x: hidden;
@@ -233,21 +255,29 @@ import { data } from 'jquery';
color: #333; color: #333;
padding: 10rpx 0; padding: 10rpx 0;
} }
uni-image { uni-image {
width: auto !important; width: auto !important;
height: 350rpx; height: 350rpx;
} }
.listenList { .listenList {
padding: 10rpx; padding: 10rpx;
box-sizing: border-box; box-sizing: border-box;
width: calc(100% - 10rpx); width: calc(100% - 10rpx);
} }
.u-row { .u-row {
flex-wrap: wrap; flex-wrap: wrap;
} }
.u-col { .u-col {
overflow: hidden; overflow: hidden;
margin-bottom: 20rpx; margin-bottom: 20rpx;
} }
.mb30{margin-bottom: 30rpx; overflow: hidden;}
.mb30 {
margin-bottom: 30rpx;
overflow: hidden;
}
</style> </style>

View File

@@ -209,7 +209,7 @@
this.$http this.$http
.post('book/teach/getBookTeachItems', { .post('book/teach/getBookTeachItems', {
'bookId': this.bookid, 'bookId': this.bookid,
'limit': 10, 'limit': 20,
'page': this.page 'page': this.page
// 'userid': this.userInfo.id, // 'userid': this.userInfo.id,
// 'bookid': // 'bookid':
@@ -222,7 +222,9 @@
this.libLIst = this.libLIst.concat(res.page.records) this.libLIst = this.libLIst.concat(res.page.records)
this.status = 3 this.status = 3
this.totalPage = res.page.pages this.totalPage = res.page.pages
if(this.totalPage = res.page.current){
this.status = 1
}
} else { } else {
this.libLIst = [] this.libLIst = []
this.totalPage = 0 this.totalPage = 0