吴门纪实+3、4

This commit is contained in:
liqianyouyou
2024-02-26 00:43:11 +08:00
parent 5ae322d192
commit b3ef9e4f19
4 changed files with 233 additions and 0 deletions

View File

@@ -56,6 +56,12 @@
<view :class="['titleItem']">{{item.name}}</view>
</u-grid-item>
</u-grid>
<u-grid :col="1" v-if="titleList.length > 0&&curOneCateIndex==3">
<u-grid-item v-for="(item, index) in titleList" :key="item.id" @click="gotoDetail(item)"
style="align-items: flex-start;border-bottom: 2px solid #fff;">
<view :class="['titleItem']">{{item.title}}</view>
</u-grid-item>
</u-grid>
<view :col="1" v-if="titleList.length > 0&&curOneCateIndex==1">
<view v-for="(item, index) in titleList" :key="item.id" @click="gotoDetail(item)"
style="align-items: flex-start;border-bottom: 2px solid #fff;display: flex;padding: 20rpx 0;">
@@ -117,6 +123,9 @@
}, {
title: "吴门之光",
type: 'lightType'
}, {
title: "吴门纪实",
type: 'recordType'
}], // 一级分类标题1
twoCateList: [], // 二级分类标题
titleList: [], // 方剂标题
@@ -201,6 +210,13 @@
})
return
}
if (this.curOneCateIndex == 3) {
console.log('111', item)
uni.navigateTo({
url: "./recordDetail?id=" + item.id
})
return
}
},
// 获取名称
getTitles(dictType) {
@@ -282,6 +298,30 @@
console.log(e)
})
}
if (this.curOneCateIndex == 3) {
$http.request({
url: "book/medicaldes/recordByType?type=" + dictType,
method: "POST",
data: {
// loadAnimate: 'none', // 请求加载动画
"limit": 1000,
"page": 1,
},
header: { //默认 无 说明:请求头
'Content-Type': 'application/json'
},
}).then(res => {
console.log(res, '内容获取成功')
if (res.code == 0 && res.result.length > 0) {
this.titleList = res.result
} else {
this.titleList = []
}
}).catch(e => {
this.titleList = []
console.log(e)
})
}
},
setTwoCateIndex(item, index) {
@@ -349,6 +389,18 @@
"dictValue": "吴门之徽"
}]
}
if (this.curOneCateIndex == 3) {
this.twoCateList = [{
'dictType': "1",
"dictValue": "学术贡献"
}, {
'dictType': "2",
"dictValue": "抗疫纪实"
}, {
'dictType': "3",
"dictValue": "吴门公益"
}]
}
this.getTitles(this.twoCateList[0].dictType)
} else {
this.twoCateList = []