|
@@ -18,6 +18,11 @@ require('./../images/empty3.png').replace(/^undefined/g, '')
|
|
|
require('./../images/loading.gif').replace(/^undefined/g, '')
|
|
|
require('./../images/right.png').replace(/^undefined/g, '')
|
|
|
require('./../images/new.png').replace(/^undefined/g, '')
|
|
|
+require('./../images/t1.png').replace(/^undefined/g, '')
|
|
|
+require('./../images/t2.png').replace(/^undefined/g, '')
|
|
|
+require('./../images/t3.png').replace(/^undefined/g, '')
|
|
|
+require('./../images/go.png').replace(/^undefined/g, '')
|
|
|
+require('./../images/g1.png').replace(/^undefined/g, '')
|
|
|
|
|
|
// require('./popupEdit.js');
|
|
|
|
|
@@ -33,6 +38,7 @@ let warnImgWhite = require('./../images/icon_waring_white.png').replace(/^undefi
|
|
|
const $ = require("jquery");
|
|
|
const { post,config,getUrlArgObject,openNewWin,titleConfig } = require('./promise.js');
|
|
|
const { renderFollowUp, followEmpty } = require('./followUp.js');
|
|
|
+const {renderTcm} = require('./tcmiss.js');
|
|
|
|
|
|
const { transConf } = require('./util.js');
|
|
|
|
|
@@ -43,7 +49,8 @@ let moduleConfig={
|
|
|
auxiliary:"recommendWrap",
|
|
|
qc:"qcWrap",
|
|
|
medical:"medicalKonwledgeWrap",
|
|
|
- followup:"followUpWrap"
|
|
|
+ followup: "followUpWrap",
|
|
|
+ tcmiss: 'TcmWrap',
|
|
|
}
|
|
|
let allInterface = 0
|
|
|
let hasCompleteTnterface = 0
|
|
@@ -207,6 +214,7 @@ function renderPage(pageSet){
|
|
|
const hasAuxiliary = hasTab("辅助信息",pageSet.sysSetInfo)
|
|
|
const hasMedical = hasTab("医学知识",pageSet.sysSetInfo)
|
|
|
const hasFollowUp = hasTab("随访计划",pageSet.sysSetInfo)
|
|
|
+ const hasTcm = hasTab("中医辅助", pageSet.sysSetInfo)
|
|
|
if(!mrId){
|
|
|
empty()
|
|
|
return
|
|
@@ -232,6 +240,9 @@ function renderPage(pageSet){
|
|
|
if(hasFollowUp){
|
|
|
renderFollowUp(msg)
|
|
|
}
|
|
|
+ if (hasTcm) {
|
|
|
+ renderTcm(msg)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
function renderPushData(){
|