Ver código fonte

Merge branch 'cnpc2.1' into debug

shanbinzhang 5 meses atrás
pai
commit
d0f6fd0377

BIN
src/assets/imgs/tabbar/icon_reportwar.png


+ 66 - 40
src/views/externalReport/List.vue

@@ -34,6 +34,7 @@ function handleCleanFilter(){
     listState.permissions=[]
 
     listState.keyWord=''
+    showMoreFilter.value = false
     refreshList()
 }
 
@@ -51,6 +52,8 @@ async function getClassify() {
 
     listState.classifys = collectClassifyOpts.value.length ? collectClassifyOpts.value.map(_ => _.Id) : []
     getList()
+
+    handleShowFilter()
 }
 getClassify()
 function filterEmpty(arr) {
@@ -107,6 +110,7 @@ const listState = reactive({
 async function getList(){
     const res = isRise.value
         ? await reportExternalInterface.getRiseReportList({
+            ChartPermissionIdList: listState.permissions.join(','),
             Keyword: listState.keyWord,
             PageSize: listState.pageSize,
             CurrentIndex: listState.page,
@@ -149,13 +153,13 @@ function refreshList(){
 }
 function handleReportChange() {
     listState.keyWord = '';
-    listState.permissions = [];
+    // listState.permissions = [];
     showMoreFilter.value = false
     refreshList()
 }
 
 
-
+//筛选项弹窗
 const showMoreFilter=ref(false)
 const permissionDropMenuIns = ref(null)
 const clasifyDropMenuIns = ref(null)
@@ -165,9 +169,7 @@ function handleShowFilter() {
     showMoreFilter.value=true
     nextTick(()=>{
         setTimeout(() => {
-            listState.reportType===1
-                ?(permissionDropMenuIns.value?.toggle(true))
-                :(clasifyDropMenuIns.value?.toggle(true));
+            permissionDropMenuIns.value?.toggle(true)
         }, 100);
     })
 }
@@ -195,7 +197,6 @@ function handleChangeClassify(item) {
         ? selectClassifyVal.value.splice(selectClassifyVal.value.findIndex(_ => _===item.Id),1)
         : selectClassifyVal.value.push(item.Id)
 
-        console.log(selectClassifyVal.value)
     }
 }
 function handleConfirmClassify() {
@@ -214,6 +215,32 @@ async function handleChangeCollect(item) {
     showToast(item.IsCollect===1?'收藏成功':'取消收藏成功')
 }
 
+//报告收藏是报告分类收藏 神奇的设计
+async function handleChangeReportClassifyCollect(item) {
+
+    item.IsCollect === 1 && await showDialog({
+        title: '提示',
+        message: '确认取消收藏该报告分类吗?',
+        showCancelButton:true
+    })
+
+    let ClassifyId = isRise.value ? (item.ClassifyIdThird||item.ClassifyIdSecond||item.ClassifyIdFirst) : item.ClassifyId;
+    const res = await reportExternalInterface.collectClassify({
+        ClassifyId
+    })
+
+    if(res.Ret !== 200) return
+    item.IsCollect = item.IsCollect?0:1
+    
+    listState.list.forEach(_ => {
+        let reportClssifyId = isRise.value ? (item.ClassifyIdThird||item.ClassifyIdSecond||item.ClassifyIdFirst) : item.ClassifyId;
+        if(ClassifyId===reportClssifyId) {
+            _.IsCollect = item.IsCollect;
+        }
+    })
+    showToast(item.IsCollect===1?'收藏报告分类成功':'取消收藏成功')
+}
+
 
 
 // 跳转详情
@@ -284,7 +311,7 @@ function goDetail(item){
 
             <template v-if="showMoreFilter">
                 <van-dropdown-menu :close-on-click-overlay="false" :close-on-click-outside="false">
-                    <van-dropdown-item title="品种标签" ref="permissionDropMenuIns" v-if="!isRise">
+                    <van-dropdown-item title="品种标签" ref="permissionDropMenuIns">
                         <div class="drop-opt-box">
                             <ul class="list">
                                 <li 
@@ -462,14 +489,30 @@ function goDetail(item){
                     @click="goDetail(item)"
                 >   
                     <div class="list-top">
-                        <h2 class="van-ellipsis title">{{item.Title}}</h2>
+                        <h2 class="van-ellipsis title">
+                            {{item.Title}}
+                            <template v-if="isRise">
+                                ({{ moment(item.MsgSendTime||item.PublishTime||item.CreateTime).format('MMDD')}})
+                            </template>
+                            <template v-else>
+                                ({{ moment(item.CreateTime).format('MMDD') }})
+                            </template>
+
+                            <svg-icon
+                                v-if="isReportWarResearch"
+                                class="handle-icon"
+                                :name="item.IsCollect?'collect_ico':'cancel_collect_ico'"
+                                size="20px"
+                                @click.stop="handleChangeReportClassifyCollect(item)"
+                            />
+                        </h2>
                     </div>
                     <p class="van-multi-ellipsis--l2 des">{{item.Abstract}}</p>
                     <div class="bot-info">
                         <div class="time">
                             <span style="margin-right:2px">{{moment(item.ModifyTime).format('YYYY-MM-DD')}}</span>
                         </div>
-                        <span style="margin-left:10px">{{item.SysUserName}}</span>
+                        <span class="author van-ellipsis">{{item.SysUserName}}</span>
                     </div>
                 </li>
             </ul>
@@ -582,28 +625,17 @@ function goDetail(item){
             }
         }
         .title{
-            .tag{
-                display: inline-block;
-                width: 100px;
-                height: 44px;
-                line-height: 44px;
-                text-align: center;
-                font-size: 28px;
-                background: rgba(0, 82, 217, 0.1);
-                border-radius: 4px;
-                color: $theme-color;
-            }
-            .week{
-                color: $font-success;
-                background: rgba(43, 164, 113, 0.1);
-            }
-            .day{
-                color: $theme-warning;
-                background: rgba(227, 115, 24, 0.1);
-            }
+            width: 100%;
             font-size: 32px;
             line-height: 44px;
             margin: 0;
+            padding-right: 50px;
+            position: relative;
+            .handle-icon {
+                position: absolute;
+                right: 0;
+                top: 0;
+            }
         }
         .inline-title{
             margin-left: -14px;
@@ -622,18 +654,12 @@ function goDetail(item){
             color: $font-grey;
             font-size: 28px;
             .time{
-                flex: 1;
-            }
-            .active-status{
-                color: $font-success;
+                flex-shrink: 0;
             }
-            .read-count{
-                color: $theme-warning;
-                margin-right: 30px;
-                span{
-                    display: inline-block;
-                    margin: 0 10px;
-                }
+            .author  {
+                flex: 1;
+                margin-left: 15px;
+                text-align: right;
             }
         }
     }
@@ -642,7 +668,7 @@ function goDetail(item){
 .drop-opt-box {
     /* padding: 0 30px; */
     .list {
-        padding: 0 40px;
+        padding: 0 40px 40px 60px;
         max-height: 40vh;
         overflow: auto;
     }

+ 1 - 1
src/views/externalReport/Preview.vue

@@ -118,7 +118,7 @@ function getFileIcon(name) {
             <span>{{reportInfo.CreateTime}}</span>
         </div>
         
-        <div class="report-html-wrap report-external-html" v-html="reportInfo.Abstract" v-if="reportInfo.Abstract"></div>
+        <div class="report-abstract" v-if="reportInfo.Abstract">摘要:{{reportInfo.Abstract}}</div>
         <div class="report-html-wrap report-external-html" v-html="reportInfo.Content" v-if="reportInfo.Content"></div>
         
     </div>

+ 21 - 14
src/views/tabbar/Home.vue

@@ -194,6 +194,17 @@ const topImg=computed(()=>{
 // 新增一个用于映射语言版本的函数
 
 const menuConfig=[
+    {
+        name:'战研中心研报',
+        des:'全系统各类分析报告一体化展示平台',
+        key:'战研中心研报',
+        type:'zh',
+        level:1,
+        path:'/war_research_report/list',
+        icon:getStaticImg('tabbar/icon_reportwar.png'),
+        backgroundColor:'#F8F9FF',
+        show:false
+    },
     {
         name:'研报中心',
         des:'研报一体化管理',
@@ -206,19 +217,8 @@ const menuConfig=[
         show:false
     },
     {
-        name:'战研中心研报',
-        des:'',
-        key:'战研中心研报',
-        type:'zh',
-        level:1,
-        path:'/war_research_report/list',
-        icon:getStaticImg('tabbar/icon_report.png'),
-        backgroundColor:'#FFFBF6',
-        show:false
-    },
-    {
-        name:'英文研报',
-        des:'研报一体化管理',
+        name:'English Research Report',
+        des:'Integrated Research Report Management',
         key:'英文研报',
         type:'zh',
         level:2,
@@ -436,7 +436,10 @@ getSetTitle()
             <div 
                 v-for="item in menuOpts"
                 :key="item.name"
-                :class="['item-box',item.type==='en'?'item-box_en':'']"
+                :class="['item-box',
+                    item.type==='en'?'item-box_en':'',
+                    item.key==='战研中心研报'&&'full-item'
+                ]"
                 :style="{backgroundColor:item.backgroundColor}"
                 @click="goNext(item.path)"
             >
@@ -476,6 +479,10 @@ getSetTitle()
             align-items: center;
             border-radius: 32px;
             cursor: pointer;
+            &.full-item {
+                width: 100%;
+                justify-content: left;
+            }
             .icon{
                 width: 90px;
                 height: 90px;