zhangxc пре 5 година
родитељ
комит
8445ff898d

+ 2 - 0
src/components/PushItems/RecommendInspect/index.less

@@ -53,6 +53,8 @@ overflow: hidden;
   color:  #58ACD7;;
   font-size: 14px;
   cursor: pointer;
+  position: relative;
+  top: 5px;
   img {
     width: 12px;
     height: 12px;

+ 2 - 1
src/modules/HomePage/index.jsx

@@ -7,7 +7,7 @@ import {ConfirmModal} from '@commonComp';
 import store from '@store';
 
 import {HIDEDROP,SETMINSCREEN,SETSYSTEMCONFIG,SETPRE,SETREADDITEMS,RESET_SELECT_TAG,ISREAD} from '@store/types/homePage.js';
-import {billing} from '@store/async-actions/pushMessage';
+import {billing,getMRAnalyse} from '@store/async-actions/pushMessage';
 import {CLEAR_SEARCH,DELETE_MAIN_SELECTED_TAGS} from '@types/mainSuit';
 import {CURRENT_CLEAR,DELETE_CURRENT_SELECTED_TAGS} from '@types/currentIll';
 import {OTHERHIS_CLEAR,DELETE_OTHER_SELECTED_TAGS} from '@types/otherHistory';
@@ -122,6 +122,7 @@ const mapDispatchToProps = function (dispatch) {
         const {homePage} = state;
         pushAllDataList(1,'push',homePage.preData,'preIcss');
         dispatch(billing())
+        dispatch(getMRAnalyse())
         dispatch({type:SETPRE,show:false});
       },
       noReferRecord(){

+ 2 - 1
src/store/async-actions/historyTemplates.js

@@ -3,7 +3,7 @@ import { pushAllDataList,didPushParamChange } from '@utils/tools';
 import { initHistory } from '@store/actions/historyTemplates';
 import Notify from '@commonComp/Notify';
 import store from '@store';
-import { billing } from '@store/async-actions/pushMessage';
+import { billing, getMRAnalyse} from '@store/async-actions/pushMessage';
 
 export const initItemList = (item) => {
   let baseList = store.getState();
@@ -31,6 +31,7 @@ export const getHistempDetail = (item) => {
                 if(didPushParamChange()) {
                   dispatch(billing());
                 }
+                dispatch(getMRAnalyse())
             }else{
                 Notify.error(data.msg);
             }

+ 1 - 0
src/store/async-actions/patInfo.js

@@ -47,6 +47,7 @@ export const getPreMsg = (dispatch, getState) => {
             }
             // dispatch({type:SETPRE,show:true});
             dispatch({type:SETPREDATA,preData:preIcss});
+           
         } else {
             // console.log(res)
         }

+ 2 - 1
src/store/async-actions/tabTemplate.js

@@ -22,7 +22,7 @@ import {
   getUrlArgObject,
   didPushParamChange
 } from '@utils/tools';
-import { billing } from '@store/async-actions/pushMessage';
+import { billing, getMRAnalyse } from '@store/async-actions/pushMessage';
 
 export const initItemList = (current,name) => {
   let admin = store.getState().homePage.admin;
@@ -335,6 +335,7 @@ export const setPageView = (id) => { //获取模板结构化数据
         if(didPushParamChange()){     //诊断变化时会调推送,避免重复调
           dispatch(billing())
         }
+        dispatch(getMRAnalyse())
       } else {
         Notify.error(data.msg);
       }