This commit is contained in:
@fawn-nine
2024-05-30 14:52:46 +08:00
parent 629c59989c
commit a91d21553a
2 changed files with 19 additions and 17 deletions

View File

@@ -333,22 +333,22 @@
getMedicalTags(id) {
var ftag = null
id ? ftag = id : ftag = 0
$http.request({
url: "curseTagList",
method: "POST", // POST、GET、PUT、DELETE具体说明查看官方文档
// data: {
// 'id': ftag
// },
header: { //默认 无 说明:请求头
'Content-Type': 'application/json'
},
}).then(res => {
this.$http
.post('medical/home/getCourseMedicalTree')
.then(res => {
console.log(res)
if (res.code == 0) {
if (res.labels.length > 0) {
this.curseTagList = res.labels
this.tabsid = res.labels[0].id
this.curseClick(res.labels[0])
// this.curseClick(res.labels[0])
if (res.labels[0].isLast == 0) { // 非终极
if (res.labels[0].children && res.labels[0].children.length > 0) {
this.sbuMedicalTagsList = res.labels[0].children
} else {
this.sbuMedicalTagsList = []
}
}
} else {
this.tabsid = null
this.curseTagList = []
@@ -497,7 +497,7 @@
},
curseClick(item) {
this.tabsid = item.id
if (item.isLast == 1) { // 终极
if (item.isLast == 0) { // 终极
if (item.children && item.children.length > 0) {
this.sbuMedicalTagsList = item.children
} else {
@@ -511,7 +511,7 @@
},
curseClickJump(item){
uni.navigateTo({
url: `/pages/course/index?id=33&title=中医学`
url: `/pages/course/index?id=${item.id}&title=中医学`
// url: `/pages/course/index?id=${item.id}&title=${item.title}`
});
},