Browse Source

Merge branch 'LaoMo' into test

lex-xin 3 years ago
parent
commit
cde754a792

+ 8 - 8
src/App.vue

@@ -24,14 +24,14 @@
   -webkit-text-size-adjust: none !important;
 }
 
-.fade-enter-active,
-.fade-leave-active {
-  transition: opacity 0.5s;
-}
-.fade-enter,
-.fade-leave-active {
-  opacity: 0;
-}
+// .fade-enter-active,
+// .fade-leave-active {
+//   transition: opacity 0.5s;
+// }
+// .fade-enter,
+// .fade-leave-active {
+//   opacity: 0;
+// }
 body {
   -webkit-text-size-adjust: none !important;
 }

+ 11 - 1
src/api/teacher.js

@@ -447,6 +447,15 @@ const newsQuery = (data) => {
   })
 }
 
+// 资讯列表分页查询
+const newsList = (data) => {
+  return axios({
+    url: '/api-cms/news/list',
+    method: 'get',
+    params: data
+  })
+}
+
 export {
   queryMyCreatedList,
   queryWaitList,
@@ -496,5 +505,6 @@ export {
   visitGetInfo,
   findEducationUsers,
   queryDouble11Students,
-  newsQuery
+  newsQuery,
+  newsList
 }

+ 2 - 2
src/components/MSearch.vue

@@ -1,7 +1,7 @@
 <template>
     <div>
-        <van-search placeholder="请输入搜索关键词" 
-            background="#fff" 
+        <van-search placeholder="请输入搜索关键词"
+            background="#fff"
             shape="round"
             @search="onSearch"
             show-action v-model="searchValue">

+ 8 - 0
src/router/teacherRouter.js

@@ -266,6 +266,14 @@ let teacherRouter = [
         descrition: '系统通知',
         weight: 3 // 页面权重
     }
+  }, {
+    path: '/special',
+    name: 'special',
+    component: () => import(/* webpackChunkName:'special'*/'@/views/teacher/special.vue'),
+    meta: {
+        descrition: '系统通知列表',
+        weight: 3 // 页面权重
+    }
   }
 ];
 

+ 162 - 0
src/views/teacher/special.vue

@@ -0,0 +1,162 @@
+<template>
+    <div class="special">
+        <van-sticky>
+          <m-search @onSearch="onSearch" />
+        </van-sticky>
+        <div class="specialList">
+            <van-list v-model="loading"  v-if="show" key="teachcer"
+                :finished="finished"
+                finished-text="没有更多数据了"
+                :immediate-check="false"
+                @load="getNewsList()">
+                <!-- :href="origin + '/#/specialdetail/' + item.id" -->
+                <a v-for="(item, index) in dataList" :key="index" @click="onHref(item)"
+                     class="item-container">
+                    <h2>{{ item.title }}</h2>
+                    <div class="topinfo">
+                        <p>{{ item.updateTime }}</p>
+                        <p></p>
+                    </div>
+                    <!-- <div class="imgWrap" :class="[params.type == 1 ? 'imgWrapDefault' : '']" v-if="item.coverImage">
+                        <van-image :src="item.coverImage">
+                            <template v-slot:loading>
+                                <van-loading type="spinner" size="20" />
+                            </template>
+                        </van-image>
+                    </div> -->
+                </a>
+            </van-list>
+            <m-empty v-else key="teachcer" />
+        </div>
+    </div>
+</template>
+<script>
+// import MHeader from '@/components/MHeader'
+import MSearch from '@/components/MSearch'
+import MEmpty from '@/components/MEmpty'
+import { newsList } from '@/api/teacher'
+import cleanDeep from 'clean-deep'
+// import { browser }  from '@/common/common'
+export default {
+    name: 'special',
+    components: { 
+        // MHeader, 
+        MSearch, MEmpty },
+    data() {
+        return {
+            search: null, // 查询信息
+            show: true, // 判断是否有数据
+            dataList: [], // 老师列表
+            loading: false,
+            finished: false,
+            origin: window.location.origin,
+            params: {
+                type: 19,
+                status: 1,
+                page: 1,
+                rows: 10
+            },
+            typeList: [],
+        }
+    },
+    async mounted() {
+        let params = this.$route.query
+        if (params.Authorization) {
+            localStorage.setItem('Authorization', decodeURI(params.Authorization))
+            localStorage.setItem('userInfo', decodeURI(params.Authorization))
+        } else {
+            localStorage.removeItem('Authorization')
+            localStorage.removeItem('userInfo')
+        }
+        document.title = '公告列表'
+
+        await this.getNewsList()
+    },
+    methods: {
+        onSearch(value) {
+            this.show = true
+            this.dataList = [] // 重置数据
+            this.search = value
+            this.params.page = 1
+            this.finished = false
+            this.getNewsList()
+        },
+        onHref(item) {
+            if(item.linkUrl) {
+              window.location.href = item.linkUrl
+            } else {
+              this.$router.push('/specialdetail?id=' + item.id)
+            }
+        },
+        async getNewsList() {
+            let params = this.params
+            params.search = this.search
+            await newsList(cleanDeep(params)).then(res => {
+                let result = res.data
+                this.loading = false
+                if(result.code == 200) {
+                    // 重点这句,判断是不是重复请求了
+                    if (this.dataList.length > 0 && result.data.pageNo == 1) {
+                        return;
+                    }
+
+                    this.dataList.push(...result.data.rows)
+                    if(params.page >= Math.ceil(result.data.total / params.rows)) {
+                        this.finished = true
+                    }
+                    this.params.page++
+                } else {
+                    this.finished = true
+                }
+                if(this.dataList.length <= 0) {
+                    this.show = false
+                }
+            })
+        }
+    },
+}
+</script>
+<style lang="less" scoped>
+.special {
+    min-height: 100vh;
+}
+.item-container {
+    margin-top: .08rem;
+    display: block;
+    padding: .15rem;
+    background: #fff;
+    h2 {
+        font-size: 0.18rem;
+        color: rgba(68, 68, 68, 1);
+        line-height: 0.25rem;
+        font-weight: 600;
+    }
+}
+.topinfo {
+    margin-top: 0.05rem;
+    display: flex;
+    flex-direction: row;
+    justify-content: space-between;
+    font-size: 12px;
+    font-family: PingFang-SC;
+    font-weight: 500;
+    color: rgba(170, 170, 170, 1);
+    line-height: 17px;
+}
+
+// .imgWrap {
+//     max-height: 1.75rem;
+//     margin-top: 0.08rem;
+//     border-radius: 0.05rem;
+//     overflow: hidden;
+//     display: flex;
+//     justify-content: center;
+//     align-items: center;
+//     img {
+//         width: 100%;
+//     }
+// }
+// .imgWrapDefault {
+//     align-items: baseline;
+// }
+</style>

+ 8 - 2
src/views/teacher/specialDetail.vue

@@ -24,8 +24,14 @@ export default {
     };
   },
   mounted() {
-    localStorage.removeItem("Authorization");
-    localStorage.removeItem("userInfo");
+    let params = this.$route.query
+    if (params.Authorization) {
+        localStorage.setItem('Authorization', decodeURI(params.Authorization))
+        localStorage.setItem('userInfo', decodeURI(params.Authorization))
+    } else {
+        localStorage.removeItem('Authorization')
+        localStorage.removeItem('userInfo')
+    }
     this.__init();
 
     // 图片预览

+ 1 - 1
vue.config.js

@@ -39,7 +39,7 @@ module.exports = {
     open: process.platform === 'darwin',
     host: '0.0.0.0',
     port: 9999,
-    https: false,
+    https: true,
     hotOnly: false,
     // 查阅 https://github.com/vuejs/vue-doc-zh-cn/vue-cli/cli-service.md#配置代理
     proxy: {