123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- <!-- 完成了商学院页面 -->
- <template>
- <view class="business ">
- <view class="two-item" :style="{ marginTop: top + 'px' }">
- <view class="plat-form" @click="goToplatform()">
- <image :src="imgUrl+'/platform.png'" mode=""></image>
- <div class="word">平台公告</div>
- </view>
- <view class="propaganda" @click="goTomaterial()">
- <image :src="imgUrl+'/propaganda.png'" mode=""></image>
- </view>
- </view>
- <!-- <view class="" @click="getList">
- 123123123
- </view> -->
- <view class="choice-course">
- <view class="item" v-for="(item,index) in curriculum" :class="{itemActive:colorIndex==index}" @click="getMsg(item,index)" :key="index">
- {{item.course_name}}
- </view>
- <view class="item"></view>
- </view>
- <view class="curriculum-list">
- <view class="curriculum-list-item">
- <view v-if="bottomList&&bottomList.length>0">
- <view class="item" v-for="(item) in bottomList" :key="item.id" @click="gotoarticle(item)">
- <view class="image" style="position: relative;">
- <image :src="item.cover" mode="aspectFill" ></image>
- <text v-if="item.article_type==0" style="position: absolute; left: 10rpx; top: 10rpx; width: 30rpx; height: 30rpx; color: #053520;" class="iconfont"></text>
- <text v-if="item.article_type==1" style="position: absolute; left: 10rpx; top: 10rpx; width: 30rpx; height: 30rpx; color: #053520;" class="iconfont"></text>
- </view>
- <view class="right-title">
- <view class="title">
- {{item.title}}
- </view>
- <view class="video-num">
- 观看 {{item.browse_sum}}
- </view>
- </view>
- </view>
- <loadMore v-if="bottomList.length>0" :status="status" ></loadMore>
- </view>
- <nodata v-else style="height: 100%;" :config="{top:1,content:'暂无课程'}"></nodata>
- </view>
- </view>
- </view>
- </template>
- <script>
- let app = getApp()
- import {classifyList,articleList,recommendList,hotList} from "@/api/notice.js"
- export default{
- data(){
- return{
- curriculum:[
- {
- id:-1,
- course_name:"推荐课程",
- },
- {
- id:-2,
- course_name:"热门课程",
- },
- ],
-
- params:{
- page:1,
- limit:10
- },
- bottomList:[],//底部list数据
- colorIndex:0,
- status:"more",
- page:1,
- limit:10,
- imgUrl: this.$mConfig.staticUrl,
- top: 0
- }
- },
- created(){
- this.getList()
- this.top = app.globalData.barHeight + 44
- },
- methods:{
- getMsg(item,index){
- this.colorIndex=index
- delete this.params.recommend
- delete this.params.hot
- delete this.params.course_id
- this.params.page=1
- this.bottomList=[]
- if(index==0){
- this.params.recommend=1
- }
- if(index==1){
- this.params.hot=1
- }
- if(index>1){
- this.params.course_id=item.id
- }
- this.initialization()
- },
- //上拉加载
- loaderMore(){
- if(this.status=="more"){
- this.params.page++
- this.initialization()
- }
- },
- isload(){
- this.params.page = 1;
- this.bottomList=[],
- this.initialization()
-
- },
- initialization(){
- this.$http.get('/bbs/article/list',this.params).then(res=>{
- if(res&&res.code==200){
- this.bottomList =this.bottomList.concat(res.page.list)
- this.$emit("bottomList",this.bottomList)
- if (res.page.totalPage <= res.page.currPage) {
- this.status = "noMore";
- } else {
- this.status = "more";
- }
- }
- })
- },
- //获取头部list内容
- getList(){
- this.$http.get(classifyList).then(res=>{
- if(res&&res.code==200){
- console.log(res)
- this.curriculum = this.curriculum.concat(res.list)
- this.params.recommend=1
- this.initialization()
- }
- })
- },
-
- //跳转平台公告页面
- goToplatform(){
- uni.navigateTo({
- url:"../research/business/platform"
- })
- },
- //跳转宣传素材页面
- goTomaterial(){
- uni.navigateTo({
- url:"../research/business/material"
- })
- },
- gotoarticle(item){
-
- uni.navigateTo({
- url:"../research/business/article?id="+item.id
- })
- }
- }
- }
- </script>
- <style>
- page{
- background-color: #F5F5F5;
- }
- </style>
- <style lang="scss" scoped>
-
- /deep/.uni-load-more__text{
- font-size: 24rpx;
- }
- .business{
- overflow: hidden;
- .two-item{
- background-color: #0B844A;
- // margin-top: 148rpx;
- // margin-top: 88px;
- display: flex;
- padding: 32rpx 30rpx 41rpx 30rpx;
- .plat-form{
- position: relative;
- image{
- width: 328rpx;
- height: 172rpx;
- margin-right: 34rpx;
- }
- .word {
- position: absolute;
- font-size: 44rpx;
- font-family: PingFang SC, PingFang SC-Regular;
- font-weight: 400;
- color: #6cb600;
- text-align: center;
- top: 35rpx;
- left: 50%;
- transform: translateX(-55%);
- }
- }
- .propaganda{
- image{
- width: 328rpx;
- height: 172rpx;
- }
- }
- }
- .curriculum-list{
- background-color: #0B844A;
- .curriculum-list-item{
- padding: 40rpx 30rpx 40rpx 30rpx;
- border-radius: 40rpx 40rpx 0 0;
- background-color: #f5f5f5;
- .item{
- background-color: #ffffff;
- padding: 20rpx;
- display: flex;
- margin-bottom: 25rpx;
- border-radius: 18rpx;
- .image{
- margin-right: 40rpx;
- image{
- border-radius: 18rpx;
- width: 238rpx;
- height: 151rpx;
- }
- }
- }
- .right-title{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .title{
- word-break:break-all;
- line-height: 36rpx;
- margin-top: 4rpx;
- color: #181818;
- font-size: 28rpx;
- font-weight: 400;
- }
- .video-num{
- margin-bottom: 4rpx;
- color: #999999;
- font-weight: 400;
- font-size: 24rpx;
- }
- }
-
- }
- }
- .choice-course{
- background-color: #0B844A;
- display: flex;
- align-items: center;
- white-space: nowrap;
- overflow-x: auto;
- -webkit-overflow-scrolling: touch;
- color: #ffffff;
- padding: 38rpx 33rpx 19rpx 30rpx;
- padding-right: 20rpx;
-
- .item:last-child{
- margin-right: 33rpx;
- }
- .item{
- margin-right: 33rpx;
- padding-bottom: 19rpx;
- margin-bottom: 10rpx;
- font-size: 28rpx;
- font-weight: Medium;
- color: rgba(255,255,255,1);
- position: relative;
- }
- .itemActive:before{
- content: "";
- position: absolute;
- left: 25%;
- bottom: 0;
- width: 50%;
- height: 2rpx;
- background-color: #FFFFFF;
- }
- .itemActive{
- font-size: 32rpx;
- font-weight: 700;
- }
- }
- }
- </style>
|