|
@@ -201,7 +201,7 @@ function moreInfo() {
|
|
|
const type = $(this).parents(".pushItemBox").attr('data-type')
|
|
|
openNewWin(`staticInfo.html?type=${encodeURIComponent(type)}&position=0&name=${encodeURIComponent(name)}&mrId=${encodeURIComponent(mrId)}`)
|
|
|
})
|
|
|
- $('.evaluationtitle').off("click").click(function () {
|
|
|
+ $('.evaluationtitle .item-name').off("click").click(function () {
|
|
|
const name = $(this).parents(".pushItemBox").attr('data-name')
|
|
|
const type = $(this).parents(".pushItemBox").attr('data-type')
|
|
|
openNewWin(`staticInfo.html?type=${encodeURIComponent(type)}&position=0&name=${encodeURIComponent(name)}&page=1&mrId=${encodeURIComponent(mrId)}&gauge=gauge`)
|
|
@@ -413,7 +413,6 @@ function renderWriteStandard(){
|
|
|
const list = res.data.data || {}
|
|
|
let casewritingNum = $(".moduleItem.casewriting").attr("data-num") || 5
|
|
|
renderwriteStandardPage(list,casewritingNum)
|
|
|
- empty();
|
|
|
}
|
|
|
})
|
|
|
}
|
|
@@ -446,6 +445,7 @@ function renderwriteStandardPage(list,casewritingNum){
|
|
|
$('.moduleItem.casewriting').css("display","block")
|
|
|
updatePopNum();
|
|
|
bindSlideCaseWriting()
|
|
|
+ empty();
|
|
|
}
|
|
|
}
|
|
|
function renderBillingPush(list,name,code){
|
|
@@ -650,7 +650,7 @@ function renderItemWrapper(list, showNum) {
|
|
|
function renderPushItem(item) {
|
|
|
const infoIcon = `${ item.hasInfo == "1" ? `<img class="infoImg" src="${infoImg}">` : "" }`;
|
|
|
str = `<span class="pushItemBox" data-name="${item.name}" data-type="${item.type}">`
|
|
|
- str += `<span class="pushItemName ${item.hasScale == "1" ? 'evaluationtitle':''}"><i>${item.type == 8 ? ('【' + item.name + '】') : item.name}</i> ${infoIcon}<i class="hidden-i"></i></span>`
|
|
|
+ str += `<span class="pushItemName ${item.hasScale == "1" ? 'evaluationtitle':''}"><i class="item-name">${item.type == 8 ? ('【' + item.name + '】') : item.name}</i> ${infoIcon}<i class="hidden-i"></i></span>`
|
|
|
str+=`</span>`;
|
|
|
return str
|
|
|
}
|