123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473 |
- <template>
- <view class="container">
- <view class="headbox">
- <!-- <view class="headnav x-bc">
- <view :class="activeTab == 0 ? 'headnav-item headnav-active':'headnav-item'" @click="handleNav(0)">
- <view>直播计划</view>
- <view class="headnav-num">3</view>
- <image src="https://fbylive.obs.cn-southwest-2.myhuaweicloud.com:443/app/images/idle.png" mode="aspectFill"></image>
- </view>
- <view :class="activeTab == 1? 'headnav-item headnav-active':'headnav-item'" @click="handleNav(1)">
- <view>今日直播</view>
- <view class="headnav-num">3</view>
- <image src="https://fbylive.obs.cn-southwest-2.myhuaweicloud.com:443/app/images/streaming.png" mode="aspectFill"></image>
- </view>
- <view :class="activeTab == 2 ? 'headnav-item headnav-active':'headnav-item'" @click="handleNav(2)">
- <view>往日直播</view>
- <view class="headnav-num">3</view>
- <image src="https://fbylive.obs.cn-southwest-2.myhuaweicloud.com:443/app/images/finished.png" mode="aspectFill"></image>
- </view>
- </view> -->
- <!-- <view class="x-bc">
- <view :class="searchbarNav == index ? 'searchbar x-c searchbar-active':'searchbar x-c'" v-for="(item,index) in searchbar" :key="index" @click="clickSearchbar(index)">
- <text>{{item.name}}</text><u-icon class="arrow-down" name="arrow-down" :color="searchbarNav == index ?'#1677ff':'#999'" size="12"></u-icon>
- </view>
- </view> -->
- <dropdownPanel :filterData='filterData' @onChange="onChange" @confirm="confirm" @reset="reset">
- <scroll-view scroll-y="true" class="hb" :refresher-enabled="isEnableds"
- :refresher-triggered="triggereds" refresher-background="rgba(0,0,0,0)"
- @refresherrefresh="pullDownRefreshs" @refresherrestore="triggereds = false"
- :upper-threshold="100" :lower-threshold="100" @refresherabort="triggereds = false"
- @scrolltolower="reachBottoms">
- <view class="justify-between align-center mb20 mlr20 ">
- <u-search placeholder="搜索训练营" v-model="keyword" :showAction="false" height="30px"
- @search='searchKeyword'></u-search>
- </view>
- <view v-if="searchbarNav == 0">
- <view class="boxnav x-bc">
- <view class="boxnav-item" v-for="(item,index) in courseList" :key="index">
- <view class="boxnav-item-info one-t"
- :class="courserIndex == index ? 'boxnav-active':''"
- @click="handleCourse(item,index)">{{item.periodName}}</view>
- </view>
- </view>
- </view>
- <u-loadmore :status="status" />
- </scroll-view>
- </dropdownPanel>
- </view>
- <view class="justify-between align-center mb20 mlr20 mt20 ">
- <u-search placeholder="请输入课程名称" v-model="keywordlist" :showAction="false" height="30px"
- @search='searchKeywordlist' bgColor='#fff'></u-search>
- </view>
- <view class="container-right" >
- <scroll-view style="height:100%" :scroll-y="true" :refresher-enabled="true" :refresher-triggered="triggered"
- refresher-background="rgba(0,0,0,0)" @refresherrefresh="pullDownRefresh" :scroll-top='scrollTop'
- @refresherrestore="triggered = false" :upper-threshold="100" :lower-threshold="100"
- @refresherabort="triggered = false" @scrolltolower="reachBottom" @scroll="scroll">
- <view class="list">
- <courseItem :from="'course'" :activeTab="1" v-for="(item,index) in dataList" :key="index"
- :info="item" @trigger-share="handleShare" :parent-method="parentMethod"/>
- <u-loadmore :status="loadStatus" />
- </view>
- </scroll-view>
- </view>
- </view>
- </template>
- <script>
- import {
- getFsCourseList,
- getCourseVdieoList
- } from "@/api/courseManage.js"
- import dropdownPanel from "@/components/dropdownPanel.vue"
- import courseItem from "@/components/courseItem.vue"
- export default {
- name:"liveCourse",
- components: {
- courseItem,
- dropdownPanel
- },
- props: ['parentMethod'],
- data() {
- return {
- user: {},
- filterData: [{
- name: '训练营-营期',
- value: 0,
- },
- // {
- // name: '课程状态',
- // value: 1,
- // },
- ],
- contentH: 0,
- activeTab: 1,
- courseList: [],
- courseId: '',
- searchbarNav: 0,
- courserIndex: '',
- searchbar: [{
- name: '训练营-营期'
- },
- {
- name: '课程状态'
- }
- ],
- mescroll: null,
- downOption: {
- use: true,
- auto: false
- },
- upOption: {
- onScroll: false,
- use: true, // 是否启用上拉加载; 默认true
- auto: true,
- page: {
- pae: 0, // 当前页码,默认0,回调之前会加1,即callback(page)会从1开始
- size: 10 // 每页数据的数量,默认10
- },
- noMoreSize: 10, // 配置列表的总数量要大于等于5条才显示'-- END --'的提示
- textNoMore: "已经到底了",
- empty: {
- icon: 'https://cos.his.cdwjyyh.com/fs/20240423/cf4a86b913a04341bb44e34bb4d37aa2.png',
- tip: '暂无数据'
- }
- },
- dataList: [],
- params: {
- pageNum: 1,
- pageSize: 10
- },
- triggered: false,
- loadStatus: 'loadmore',
- //课程选择列表
- pageNum:1,
- pageSize: 10,
- triggereds: false,
- status: 'loadmore',
- keyword:'',
- isEnableds:true,
- keywordlist:'',
- actid:'',
- scrollTop: 0,
- old: {
- scrollTop: 0
- },
- shareConfig:''
- }
- },
- mounted() {
- const windowHeight = uni.getSystemInfoSync().windowHeight
- this.contentH = `calc(${windowHeight}px - 132px - 56px)`
- this.user = uni.getStorageSync("companyUserInfo") ? JSON.parse(uni.getStorageSync("companyUserInfo")) : {}
- this.getFsCourseList()
- },
- methods: {
- handleShare(config) {
- // 保存分享配置到父页面数据
- this.shareConfig = config;
- console.log(config)
- this.$emit('child-data-update', this.shareConfig);
- // 调起分享面板(微信小程序需主动调用)
- // #ifdef MP-WEIXIN
- uni.showShareMenu();
- // #endif
- },
- scroll: function(e) {
- // console.log(e)
- this.old.scrollTop = e.detail.scrollTop
- },
- onChange(index) {
- this.searchbarNav = index
- },
- reset() {
- this.courseId = ''
- this.keyword=''
- this.courseList=[]
- this.getFsCourseList()
- },
- handleCourse(item,index) {
- this.courserIndex = index
- this.actid=item.periodId
- },
- confirm() {
- this.courseId = this.actid
- console.log(this.courseId)
- this.params.pageNum=1
- this.getListData()
- },
- searchKeyword(value){
- this.courseList=[]
- this.keyword = value
- this.getFsCourseList()
- },
- searchKeywordlist(value){
- this.dataList=[]
- this.keywordlist = value
- this.getListData()
- },
- pullDownRefreshs() {
- // 下拉
- this.triggereds = true; //下拉了状态为true
- setTimeout(() => {
- this.triggereds = false;
- uni.stopPullDownRefresh()
- this.pageNum = 1;
- this.getFsCourseList('refresh') //触底 不穿执行else
- // 请求接口里面需要判断是不是最后一页 是最后一页 status赋值为‘loadmore’没有更多了
- // 请求接口
- }, 1000)
- },
- reachBottoms() {
- // status这个是加载状态
- if (this.status === 'loadmore') {
- this.status = 'loading'
- uni.showNavigationBarLoading()
- setTimeout(() => {
- this.pageNum++
- this.getFsCourseList() //触底 不穿执行else
- uni.hideNavigationBarLoading()
- }, 1000);
- }
- },
- // 训练营
- getFsCourseList(type) {
- const day = uni.$u.timeFormat(new Date(), 'yyyy-mm-dd')
- const param = {
- pageNum:this.pageNum,
- pageSize:this.pageSize,
- keyword:this.keyword
- }
- getFsCourseList(param).then(res => {
- if (res.code == 200) {
- if (type == 'refresh') {
- this.courseList = res.data.list
- } else {
- // 加载更多 当前页和下一页合并
- this.courseList = [...this.courseList, ...res.data.list]
- }
- if ( res.data.isLastPage) {
- this.status = 'nomore'
- } else {
- this.status = 'loadmore'
- }
- this.searchbar[0].name = this.courseList && this.courseList.length > 0 ? this.courseList[0]
- .courseName : '训练营-营期'
- console.log(this.courseId)
- // this.mescroll.resetUpScroll()
- this.getListInit()
- } else {
- uni.showToast({
- icon: 'none',
- title: res.msg,
- });
- }
- })
- },
- handleNav(type) {
- this.activeTab = type
- },
- clickSearchbar(type) {
- this.searchbarNav = type == this.searchbarNav ? 'colse' : type
- },
- mescrollInit(mescroll) {
- this.mescroll = mescroll;
- },
- getListInit() {
- this.params.pageNum = 1
- this.getListData('refresh')
- },
- async getListData(type = 'refresh') {
- uni.showLoading({
- title: "加载中..."
- })
- this.loadStatus = 'loading'
- const result = await getCourseVdieoList({
- periodId: this.courseId,
- keyword:this.keywordlist,
- ...this.params
- })
- if (result) {
- const {
- isLastPage,
- total,
- list,
- } = result.data
- if (type == 'refresh') {
- this.dataList = list
- } else {
- this.dataList = [...this.dataList, ...list]
- }
- if (isLastPage) {
- this.loadStatus = 'nomore';
- } else {
- this.loadStatus = 'loadmore';
- }
- // 当页数为1时,重置滚动位置
- if (this.params.pageNum === 1) {
- console.log(this.scrollTop)
- this.scrollTop = this.old.scrollTop
- this.$nextTick(function() {
- this.scrollTop = 0
- });
- }
- uni.hideLoading()
- } else {
- uni.showToast({
- icon: 'none',
- title: "请求失败",
- });
- this.dataList = []
- }
- },
- /**
- * 触底添加下一页
- */
- reachBottom(options) {
- if (this.loadStatus === 'loadmore') {
- this.loadStatus = 'loading'
- uni.showNavigationBarLoading()
- setTimeout(() => {
- this.params.pageNum += 1;
- this.getListData('more')
- uni.hideNavigationBarLoading()
- }, 500);
- }
- },
- /**
- * 下拉列表页
- */
- pullDownRefresh(options) {
- this.triggered = true;
- setTimeout(() => {
- this.triggered = false;
- uni.stopPullDownRefresh()
- this.params.pageNum = 1;
- this.getListData('refresh')
- }, 500)
- }
- }
- }
- </script>
- <style lang="scss">
- .container {
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- color: #222;
- display: flex;
- flex-direction: column;
- height: 100vh;
- }
- .boxnav {
- flex-wrap: wrap;
- padding: 0 0 0 10px;
- &-item {
- width: 50%;
- overflow: hidden;
- }
- &-item-info {
- border: 1px solid #f5f5f5;
- text-align: center;
- color: #222;
- background-color: #f5f5f5;
- border-radius: 3px;
- padding: 5px;
- margin: 0 10px 10px 0;
- }
- &-active {
- border: 1px solid #1677ff !important;
- color: #1677ff !important;
- background-color: #e7f1fe !important;
- }
- }
- .headbox {
- background-color: #fff;
- }
- .headnav {
- padding: 15px 12px;
- margin: 0 -10px -10px 0;
- box-sizing: border-box;
- image {
- height: 60px;
- width: 50px;
- position: absolute;
- z-index: 0;
- bottom: 0;
- right: 0;
- display: none;
- }
- &-item {
- flex: 1;
- font-size: 16px;
- padding: 10px;
- border-radius: 10px;
- background: #f5f5f5;
- margin: 0 10px 10px 0;
- position: relative;
- z-index: 1;
- overflow: hidden;
- color: #555;
- }
- &-active {
- background-color: rgb(231, 241, 255) !important;
- .headnav-num {
- color: #1677ff !important;
- }
- image {
- display: block !important;
- }
- }
- &-num {
- font-family: DIN, DIN;
- font-weight: bold;
- font-size: 25px;
- margin: 5px 0;
- }
- }
- .searchbar {
- flex: 1;
- padding-bottom: 10px;
- .arrow-down {
- margin-left: 5px;
- }
- &-active {
- color: #1677ff !important;
- .arrow-down {
- transform: rotate(180deg);
- }
- }
- }
- .coursebox {
- position: relative;
- overflow-y: auto;
- box-sizing: border-box;
- }
- .courselist {
- padding: 12px;
- box-sizing: border-box;
- }
- .container-right {
- flex: 1;
- height: calc(100% - 80rpx);
- overflow-y: scroll;
- // padding-bottom: 80rpx;
- .list {
- padding: 10px;
- box-sizing: border-box;
- width: 100%;
- }
- }
- </style>
|