|
@@ -3,6 +3,7 @@ const { openNewWin,imageUrlPrefix } = require('./promise.js');
|
|
const { bindTipsEvent } = require('./popupEdit.js');
|
|
const { bindTipsEvent } = require('./popupEdit.js');
|
|
|
|
|
|
function renderRecommendInfo(showNum,className,title,data, hasInfo, type, position) {
|
|
function renderRecommendInfo(showNum,className,title,data, hasInfo, type, position) {
|
|
|
|
+ let showNumCopy = showNum || 5
|
|
const dataLen = data.length
|
|
const dataLen = data.length
|
|
const str = `<div class="recommendInfoWrapper ${className}">
|
|
const str = `<div class="recommendInfoWrapper ${className}">
|
|
<h4><i></i>${title}</h4>
|
|
<h4><i></i>${title}</h4>
|
|
@@ -13,8 +14,8 @@ function renderRecommendInfo(showNum,className,title,data, hasInfo, type, positi
|
|
</div>`
|
|
</div>`
|
|
$('.recommendWrap').append(str)
|
|
$('.recommendWrap').append(str)
|
|
let dataShort
|
|
let dataShort
|
|
- if(showNum&& dataLen > showNum) {
|
|
|
|
- dataShort = data.slice(0, showNum)
|
|
|
|
|
|
+ if(showNumCopy&& dataLen > showNumCopy) {
|
|
|
|
+ dataShort = data.slice(0, showNumCopy)
|
|
} else {
|
|
} else {
|
|
dataShort = data
|
|
dataShort = data
|
|
}
|
|
}
|
|
@@ -52,9 +53,9 @@ function renderRecommendInfo(showNum,className,title,data, hasInfo, type, positi
|
|
$('.'+className + 'box').append(childrenNodeStrShort)
|
|
$('.'+className + 'box').append(childrenNodeStrShort)
|
|
$('.'+className + 'box' +' .infoMsg').on('click', function(){
|
|
$('.'+className + 'box' +' .infoMsg').on('click', function(){
|
|
const infoMsgName = $(this).attr('data-name')
|
|
const infoMsgName = $(this).attr('data-name')
|
|
- openNewWin(`information.html?type=${type}&position=${position}&name=${infoMsgName}`)
|
|
|
|
|
|
+ openNewWin(`information.html?type=${encodeURIComponent(type)}&position=${encodeURIComponent(position)}&name=${encodeURIComponent(infoMsgName)}`)
|
|
})
|
|
})
|
|
- if(dataLen > showNum) {
|
|
|
|
|
|
+ if(dataLen > showNumCopy) {
|
|
slideToggle($("."+className+"box"), childrenNodeStrShort,childrenNodeStrLong)
|
|
slideToggle($("."+className+"box"), childrenNodeStrShort,childrenNodeStrLong)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -65,10 +66,17 @@ function renderMultRecommendInfo(className,title,data, hasInfo, type, position)
|
|
<div class="recommendInfoBox ${className + 'box'}"></div>
|
|
<div class="recommendInfoBox ${className + 'box'}"></div>
|
|
</div>`
|
|
</div>`
|
|
$('.recommendWrap').append(str)
|
|
$('.recommendWrap').append(str)
|
|
-
|
|
|
|
|
|
+ let hasDataNum = 0
|
|
for(let i = 0; i < data.length; i++) {
|
|
for(let i = 0; i < data.length; i++) {
|
|
- const showNum = data[i].showNum
|
|
|
|
|
|
+ const showNum = data[i].showNum || 5
|
|
const dataLen = data[i].data.length
|
|
const dataLen = data[i].data.length
|
|
|
|
+ if(dataLen === 0) {
|
|
|
|
+ continue
|
|
|
|
+ }
|
|
|
|
+ hasDataNum++
|
|
|
|
+ if(hasDataNum > 1) {
|
|
|
|
+ $('.'+className + 'box').append('<div class="line"></div>')
|
|
|
|
+ }
|
|
let childrenNodeBoxStr = `<div class="labAndPacsBox ${data[i].className} clearfix"> </div>`
|
|
let childrenNodeBoxStr = `<div class="labAndPacsBox ${data[i].className} clearfix"> </div>`
|
|
let childrenNodeStrShort = `<span class="labAndPacsTitle">${data[i].title}<i></i></span>`
|
|
let childrenNodeStrShort = `<span class="labAndPacsTitle">${data[i].title}<i></i></span>`
|
|
let childrenNodeStrLong = `<span class="labAndPacsTitle">${data[i].title}<i></i></span>`
|
|
let childrenNodeStrLong = `<span class="labAndPacsTitle">${data[i].title}<i></i></span>`
|
|
@@ -99,7 +107,7 @@ function renderMultRecommendInfo(className,title,data, hasInfo, type, position)
|
|
function renderTipsInfo(className,title, data) {
|
|
function renderTipsInfo(className,title, data) {
|
|
const str = `<div class="recommendInfoWrapper ${className}">
|
|
const str = `<div class="recommendInfoWrapper ${className}">
|
|
<h4><i></i>${title}</h4>
|
|
<h4><i></i>${title}</h4>
|
|
- <div class="recommendInfoBox clearfix ${className + 'box'}"></div>
|
|
|
|
|
|
+ <div class="recommendInfoBox clearfix ${className + 'box'} disCopy"></div>
|
|
</div>`
|
|
</div>`
|
|
$('.recommendWrap').append(str)
|
|
$('.recommendWrap').append(str)
|
|
if(data.length > 0) {
|
|
if(data.length > 0) {
|
|
@@ -111,6 +119,9 @@ function renderTipsInfo(className,title, data) {
|
|
// renderTipsInfoMsg('tipsInfo', data.name, data.details, className+'box')
|
|
// renderTipsInfoMsg('tipsInfo', data.name, data.details, className+'box')
|
|
$('.' + className+'box').append('<p class="TipsInfoNull">暂无数据</p>')
|
|
$('.' + className+'box').append('<p class="TipsInfoNull">暂无数据</p>')
|
|
}
|
|
}
|
|
|
|
+ $('.' + className + 'box' + ' img').bind('contextmenu', function(){
|
|
|
|
+ return false
|
|
|
|
+ })
|
|
}
|
|
}
|
|
|
|
|
|
function renderKnowledgeInfo(className,title, data) {
|
|
function renderKnowledgeInfo(className,title, data) {
|
|
@@ -121,7 +132,7 @@ function renderKnowledgeInfo(className,title, data) {
|
|
$('.recommendWrap').append(str)
|
|
$('.recommendWrap').append(str)
|
|
$('.' + className+'box').append('<p class="TipsInfoNull staticWin">'+data+'</p>')
|
|
$('.' + className+'box').append('<p class="TipsInfoNull staticWin">'+data+'</p>')
|
|
$('.'+className+' .staticWin' ).on('click', function(){
|
|
$('.'+className+' .staticWin' ).on('click', function(){
|
|
- openNewWin(`staticSearch.html?type=1`)
|
|
|
|
|
|
+ openNewWin(`staticSearch.html?msg=${encodeURIComponent(JSON.stringify(msg))}`)
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
@@ -133,13 +144,13 @@ function renderScaleInfo(className,title, data) {
|
|
$('.recommendWrap').append(str)
|
|
$('.recommendWrap').append(str)
|
|
$('.' + className+'box').append('<p class="TipsInfoNull staticWin">'+data+'</p>')
|
|
$('.' + className+'box').append('<p class="TipsInfoNull staticWin">'+data+'</p>')
|
|
$('.'+className+' .staticWin' ).on('click', function(){
|
|
$('.'+className+' .staticWin' ).on('click', function(){
|
|
- openNewWin(`staticSearch.html?type=2&msg=${encodeURIComponent(JSON.stringify(msg))}`)
|
|
|
|
|
|
+ openNewWin(`staticSearch.html?msg=${encodeURIComponent(JSON.stringify(msg))}`)
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
function renderTipsInfoMsg(className,item,data, parentNode) {
|
|
function renderTipsInfoMsg(className,item,data, parentNode) {
|
|
const childrenNodeBoxStr = `
|
|
const childrenNodeBoxStr = `
|
|
- <div class = "treatItemBox ${className + 'box'}">
|
|
|
|
|
|
+ <div class = "treatItemBox ${className + 'box'} disCopy">
|
|
<p class="treatItemTitle">${item.name} <span class="moreInfo" data-name="${item.name}" data-type="${item.type}"}>详情</span></p>
|
|
<p class="treatItemTitle">${item.name} <span class="moreInfo" data-name="${item.name}" data-type="${item.type}"}>详情</span></p>
|
|
<p class="${className + 'Info'} clearfix"></p>
|
|
<p class="${className + 'Info'} clearfix"></p>
|
|
</div>
|
|
</div>
|
|
@@ -161,19 +172,19 @@ function renderTipsInfoMsg(className,item,data, parentNode) {
|
|
|
|
|
|
function renderTreat(className,title, data) {
|
|
function renderTreat(className,title, data) {
|
|
const str = `<div class="recommendInfoWrapper ${className}">
|
|
const str = `<div class="recommendInfoWrapper ${className}">
|
|
- <h4><i></i>${title}${msg.diseaseName?'('+msg.diseaseName+')':''}</h4>
|
|
|
|
|
|
+ <h4><i></i>${title}${msg.diseaseName?'('+msg.diseaseName.uniqueName+')':''}</h4>
|
|
<div class="recommendInfoBox clearfix ${className + 'box'}"></div>
|
|
<div class="recommendInfoBox clearfix ${className + 'box'}"></div>
|
|
</div>`
|
|
</div>`
|
|
$('.recommendWrap').append(str)
|
|
$('.recommendWrap').append(str)
|
|
const commonTreatmentInfo = data.commonTreatment&&data.commonTreatment.content || ""
|
|
const commonTreatmentInfo = data.commonTreatment&&data.commonTreatment.content || ""
|
|
- const treatmentList = data.treatment || []
|
|
|
|
|
|
+ const treatmentList = data.treatmentPlan || []
|
|
renderTreatText('commonTreatment', '一般治疗', commonTreatmentInfo, className+'box')
|
|
renderTreatText('commonTreatment', '一般治疗', commonTreatmentInfo, className+'box')
|
|
- renderTreatDrug('drugTreatment', '常用药物治疗', treatmentList, className+'box')
|
|
|
|
|
|
+ renderTreatDrug('drugTreatment', '推荐药物', treatmentList, className+'box')
|
|
}
|
|
}
|
|
|
|
|
|
function renderTreatText(className,title,data, parentNode) {
|
|
function renderTreatText(className,title,data, parentNode) {
|
|
const childrenNodeBoxStr = `
|
|
const childrenNodeBoxStr = `
|
|
- <div class = "treatItemBox ${className + 'box'}">
|
|
|
|
|
|
+ <div class = "treatItemBox ${className + 'box'} disCopy">
|
|
<p class="treatItemTitle">${title}</p>
|
|
<p class="treatItemTitle">${title}</p>
|
|
<p class="${className + 'Info'} clearfix"></p>
|
|
<p class="${className + 'Info'} clearfix"></p>
|
|
</div>
|
|
</div>
|
|
@@ -188,18 +199,16 @@ function renderTreatText(className,title,data, parentNode) {
|
|
$(".commonTreatmentInfo").addClass('commonTreatmentInfoLimit').append('<span class="slideDown">更多 <i></i></span>')
|
|
$(".commonTreatmentInfo").addClass('commonTreatmentInfoLimit').append('<span class="slideDown">更多 <i></i></span>')
|
|
}
|
|
}
|
|
$(".treatItemBox").on('click',".slideDown",function(){
|
|
$(".treatItemBox").on('click',".slideDown",function(){
|
|
- $(this).parents(".commonTreatmentInfo").removeClass("commonTreatmentInfoLimit").append('<span class="slideup">收起 <i></i></span>')
|
|
|
|
- $(this).remove()
|
|
|
|
|
|
+ openNewWin(`treatplan.html?msg=${encodeURIComponent(JSON.stringify(msg))}`)
|
|
})
|
|
})
|
|
- $(".treatItemBox").on('click',".slideup",function(){
|
|
|
|
- $(this).parents(".commonTreatmentInfo").addClass("commonTreatmentInfoLimit").append('<span class="slideDown">更多 <i></i></span>')
|
|
|
|
- $(this).remove()
|
|
|
|
|
|
+ $('.' + className + 'Info' + ' img').bind('contextmenu', function(){
|
|
|
|
+ return false
|
|
})
|
|
})
|
|
}
|
|
}
|
|
function renderTreatDrug(className,title,data, parentNode) {
|
|
function renderTreatDrug(className,title,data, parentNode) {
|
|
const childrenNodeBoxStr = `
|
|
const childrenNodeBoxStr = `
|
|
<div class = "treatItemBox ${className + 'box'}">
|
|
<div class = "treatItemBox ${className + 'box'}">
|
|
- <p class="treatItemTitle">${title}</p>
|
|
|
|
|
|
+ <p class="treatItemTitle">${title} ${data.length ==0 ?'':'<span class="slideDown">更多 <i></i></span>'}</p>
|
|
<p class="${className + 'Info'}"></p>
|
|
<p class="${className + 'Info'}"></p>
|
|
</div>
|
|
</div>
|
|
`
|
|
`
|
|
@@ -207,50 +216,65 @@ function renderTreatDrug(className,title,data, parentNode) {
|
|
if(data.length ==0) {
|
|
if(data.length ==0) {
|
|
$('.' + className+'Info').append('<span class="recommendNull">暂无推荐</span>')
|
|
$('.' + className+'Info').append('<span class="recommendNull">暂无推荐</span>')
|
|
}
|
|
}
|
|
- for(let i = 0; i < data.length; i++) {
|
|
|
|
- let childrenNodeStr = `<p class="drugTreatmentInfoItemBox">
|
|
|
|
- ${i+1}.${data[i].bigdrugsName}${data[i].subdrugsName&&"("+data[i].subdrugsName+")"}:`
|
|
|
|
- for (let j = 0; j < data[i].medicitionsList.length; j++) {
|
|
|
|
- childrenNodeStr += `<span class="durgNameBox ${(data[i].medicitionsList[j].forbidden == '2' ? 'medicineWaringDis' : '' )}"><span class="durgName">${data[i].medicitionsList[j].medicitionName}</span>`
|
|
|
|
- if(data[i].medicitionsList[j].forbidden == '1') {
|
|
|
|
- childrenNodeStr += `<span class="medicineWaring">慎用</span>`
|
|
|
|
- } else if(data[i].medicitionsList[j].forbidden == '2') {
|
|
|
|
- childrenNodeStr += `<span class="medicineWaringDisMsg">禁用</span>`
|
|
|
|
- }
|
|
|
|
- childrenNodeStr += `<span title="点击i图标可查看详细说明" class="infoMsg" data-name=${data[i].medicitionsList[j].medicitionName}></span>`
|
|
|
|
- if(j !== data[i].medicitionsList.length-1) {
|
|
|
|
- childrenNodeStr += ','
|
|
|
|
- }
|
|
|
|
- childrenNodeStr += '</span></span>'
|
|
|
|
- //隐藏使用率
|
|
|
|
- // childrenNodeStr += `<span class="${(data[i].medicitionsList[j].forbidden == '2' ? 'medicineWaringDis' : '' )}">使用率${data[i].medicitionsList[j].rate}</span>`
|
|
|
|
- // if(j === data[i].medicitionsList.length-1) {
|
|
|
|
- // childrenNodeStr += ';'
|
|
|
|
- // } else {
|
|
|
|
- // childrenNodeStr += ','
|
|
|
|
|
|
+ for(let i = 0; i < data.length; i++) {
|
|
|
|
+ let childrenNodeStr =`<div class = "drugTreatmentInfoItemBox">
|
|
|
|
+ <p class="diagTitle"><i></i>${data[i].title}</p>`
|
|
|
|
+ //二级标题暂时不放
|
|
|
|
+ // for(let j = 0; j < data[i].meditionDetails.length; j++) {
|
|
|
|
+ // if(data[i].meditionDetails[j].description) {
|
|
|
|
+ // childrenNodeStr += `<p class="diagDescription">${data[i].meditionDetails[j].description}</p>`
|
|
|
|
+ // }
|
|
// }
|
|
// }
|
|
- }
|
|
|
|
- childrenNodeStr += ` </p>`
|
|
|
|
|
|
+ childrenNodeStr +=`</div>`
|
|
$('.' + className+'Info').append(childrenNodeStr)
|
|
$('.' + className+'Info').append(childrenNodeStr)
|
|
}
|
|
}
|
|
- $('.' + className+'Info'+ ' .infoMsg').on('click', function(){
|
|
|
|
- const infoMsgName = $(this).attr('data-name')
|
|
|
|
- openNewWin(`information.html?type=8&position=5&name=${infoMsgName}`)
|
|
|
|
|
|
+ $(".treatItemTitle").on('click',".slideDown",function(){
|
|
|
|
+ openNewWin(`treatplan.html?msg=${encodeURIComponent(JSON.stringify(msg))}`)
|
|
})
|
|
})
|
|
- var treatList = $(".drugTreatmentInfo").find(".drugTreatmentInfoItemBox")
|
|
|
|
- for(var h = 0;h < treatList.length;h++){
|
|
|
|
- if($(treatList[h]).height() > 25){
|
|
|
|
- $(treatList[h]).addClass('recommendInfoItemBoxLimit').append('<span class="slideDown">更多 <i></i></span>')
|
|
|
|
- }
|
|
|
|
- $(".drugTreatmentInfo").on('click',".slideDown",function(){
|
|
|
|
- $(this).parents(".drugTreatmentInfoItemBox ").removeClass("recommendInfoItemBoxLimit").append('<span class="slideup">收起 <i></i></span>')
|
|
|
|
- $(this).remove()
|
|
|
|
- })
|
|
|
|
- $(".drugTreatmentInfo").on('click',".slideup",function(){
|
|
|
|
- $(this).parents(".drugTreatmentInfoItemBox ").addClass("recommendInfoItemBoxLimit").append('<span class="slideDown">更多 <i></i></span>')
|
|
|
|
- $(this).remove()
|
|
|
|
- })
|
|
|
|
- }
|
|
|
|
|
|
+ // for(let i = 0; i < data.length; i++) {
|
|
|
|
+ // let childrenNodeStr = `<p class="drugTreatmentInfoItemBox">
|
|
|
|
+ // ${i+1}.${data[i].bigdrugsName}${data[i].subdrugsName&&"("+data[i].subdrugsName+")"}:`
|
|
|
|
+ // for (let j = 0; j < data[i].medicitionsList.length; j++) {
|
|
|
|
+ // childrenNodeStr += `<span class="durgNameBox ${(data[i].medicitionsList[j].forbidden == '2' ? 'medicineWaringDis' : '' )}"><span class="durgName">${data[i].medicitionsList[j].medicitionName}</span>`
|
|
|
|
+ // if(data[i].medicitionsList[j].forbidden == '1') {
|
|
|
|
+ // childrenNodeStr += `<span class="medicineWaring">慎用</span>`
|
|
|
|
+ // } else if(data[i].medicitionsList[j].forbidden == '2') {
|
|
|
|
+ // childrenNodeStr += `<span class="medicineWaringDisMsg">禁用</span>`
|
|
|
|
+ // }
|
|
|
|
+ // childrenNodeStr += `<span title="点击i图标可查看详细说明" class="infoMsg" data-name=${data[i].medicitionsList[j].medicitionName}></span>`
|
|
|
|
+ // if(j !== data[i].medicitionsList.length-1) {
|
|
|
|
+ // childrenNodeStr += ','
|
|
|
|
+ // }
|
|
|
|
+ // childrenNodeStr += '</span></span>'
|
|
|
|
+ // //隐藏使用率
|
|
|
|
+ // // childrenNodeStr += `<span class="${(data[i].medicitionsList[j].forbidden == '2' ? 'medicineWaringDis' : '' )}">使用率${data[i].medicitionsList[j].rate}</span>`
|
|
|
|
+ // // if(j === data[i].medicitionsList.length-1) {
|
|
|
|
+ // // childrenNodeStr += ';'
|
|
|
|
+ // // } else {
|
|
|
|
+ // // childrenNodeStr += ','
|
|
|
|
+ // // }
|
|
|
|
+ // }
|
|
|
|
+ // childrenNodeStr += ` </p>`
|
|
|
|
+ // $('.' + className+'Info').append(childrenNodeStr)
|
|
|
|
+ // }
|
|
|
|
+ // $('.' + className+'Info'+ ' .infoMsg').on('click', function(){
|
|
|
|
+ // const infoMsgName = $(this).attr('data-name')
|
|
|
|
+ // openNewWin(`information.html?type=8&position=5&name=${infoMsgName}`)
|
|
|
|
+ // })
|
|
|
|
+ // var treatList = $(".drugTreatmentInfo").find(".drugTreatmentInfoItemBox")
|
|
|
|
+ // for(var h = 0;h < treatList.length;h++){
|
|
|
|
+ // if($(treatList[h]).height() > 25){
|
|
|
|
+ // $(treatList[h]).addClass('recommendInfoItemBoxLimit').append('<span class="slideDown">更多 <i></i></span>')
|
|
|
|
+ // }
|
|
|
|
+ // $(".drugTreatmentInfo").on('click',".slideDown",function(){
|
|
|
|
+ // $(this).parents(".drugTreatmentInfoItemBox ").removeClass("recommendInfoItemBoxLimit").append('<span class="slideup">收起 <i></i></span>')
|
|
|
|
+ // $(this).remove()
|
|
|
|
+ // })
|
|
|
|
+ // $(".drugTreatmentInfo").on('click',".slideup",function(){
|
|
|
|
+ // $(this).parents(".drugTreatmentInfoItemBox ").addClass("recommendInfoItemBoxLimit").append('<span class="slideDown">更多 <i></i></span>')
|
|
|
|
+ // $(this).remove()
|
|
|
|
+ // })
|
|
|
|
+ // }
|
|
}
|
|
}
|
|
|
|
|
|
function renderRecommendConditTips(className,title,data) {
|
|
function renderRecommendConditTips(className,title,data) {
|
|
@@ -296,7 +320,7 @@ function renderRecommendConditTips(className,title,data) {
|
|
for(var m = 0;m < tmpBq.details.length;m++){
|
|
for(var m = 0;m < tmpBq.details.length;m++){
|
|
var tmpBqDetail = tmpBq.details[m]
|
|
var tmpBqDetail = tmpBq.details[m]
|
|
if(tmpBqDetail.type == 1){
|
|
if(tmpBqDetail.type == 1){
|
|
- tmpBqDetailStr+=`<span data-url=scale.html?featureType=21&sex=${msg.sex}&lis=${JSON.stringify(msg.lis)}&diag=${msg.diag}&diseaseName=${msg.diseaseName}&scaleName=${tmpBqDetail.content.name}&symptom=${msg.symptom}&other=${msg.other}&pacs=${msg.pacs}&vital=${msg.vital}&age=${msg.age}&scaleId=${tmpBqDetail.content.id} class="illnessTable">${tmpBqDetail.content.name}</span>`
|
|
|
|
|
|
+ tmpBqDetailStr+=`<span data-scaleName=${tmpBqDetail.content.name} class="illnessTable">【${tmpBqDetail.content.name}】</span>`
|
|
}
|
|
}
|
|
if(tmpBqDetail.type == 2){
|
|
if(tmpBqDetail.type == 2){
|
|
var deepDetailName = `<div class="modalTitle">${tmpBqDetail.content.name}<i class="closeModal"></i></div>`
|
|
var deepDetailName = `<div class="modalTitle">${tmpBqDetail.content.name}<i class="closeModal"></i></div>`
|
|
@@ -401,11 +425,13 @@ function renderRecommendConditTips(className,title,data) {
|
|
}
|
|
}
|
|
$('.mayIllness .infoMsg').on('click', function(){
|
|
$('.mayIllness .infoMsg').on('click', function(){
|
|
const infoMsgName = $(this).attr('data-name')
|
|
const infoMsgName = $(this).attr('data-name')
|
|
- openNewWin(`information.html?type=22&position=2&name=${infoMsgName}`)
|
|
|
|
|
|
+ openNewWin(`information.html?type=22&position=2&name=${encodeURIComponent(infoMsgName)}`)
|
|
})
|
|
})
|
|
$('.alertModal .illnessTable').on('click', function(){
|
|
$('.alertModal .illnessTable').on('click', function(){
|
|
- const infoMsgUrl = $(this).attr('data-url')
|
|
|
|
- openNewWin(infoMsgUrl)
|
|
|
|
|
|
+ const msg1 = JSON.parse(JSON.stringify(msg))
|
|
|
|
+ msg1.scaleName = $(this).attr('data-scaleName')
|
|
|
|
+ msg1.featureType = 21
|
|
|
|
+ openNewWin(`scale.html?msg=${encodeURIComponent(JSON.stringify(msg1))}`)
|
|
})
|
|
})
|
|
bindTipsEvent()
|
|
bindTipsEvent()
|
|
}
|
|
}
|