|
|
@@ -168,16 +168,18 @@ class CompleRatoinDao {
|
|
|
}
|
|
|
return 0;
|
|
|
});
|
|
|
- for(let glj of gljDatas){
|
|
|
- hintsArr.push(` ${glj.code} ${glj.name}${glj.specs ? ' ' + glj.specs : ''}   ${glj.unit} ${gljAmtMapping[glj.ID]}`)
|
|
|
- }
|
|
|
- hintsArr.push(`基价 元 ${ration.basePrice}`);
|
|
|
if(ration.jobContent && ration.jobContent.toString().trim() !== ''){
|
|
|
- hintsArr.push(`工作内容:`);
|
|
|
+ hintsArr.push(`<label class="nomargin font_blue">工作内容:`);
|
|
|
hintsArr = hintsArr.concat(ration.jobContent.split('\n'));
|
|
|
+ hintsArr.push("</label>")
|
|
|
+ hintsArr.push("");
|
|
|
}
|
|
|
+ for(let glj of gljDatas){
|
|
|
+ hintsArr.push(`<label class="nomargin ${glj.gljType==4?"font_blue":""}"> ${glj.code} ${glj.name}${glj.specs ? ' ' + glj.specs : ''}   ${glj.unit} ${gljAmtMapping[glj.ID]}</label>`)
|
|
|
+ }
|
|
|
+ hintsArr.push(`基价 元 ${ration.basePrice}`);
|
|
|
if(ration.annotation && ration.annotation.toString().trim() !== ''){
|
|
|
- hintsArr.push(`附注:`);
|
|
|
+ hintsArr.push(`<br>附注:`);
|
|
|
hintsArr = hintsArr.concat(ration.annotation.split('\n'));
|
|
|
}
|
|
|
ration._doc.hint = hintsArr.join('<br>');
|
|
|
@@ -254,16 +256,18 @@ class CompleRatoinDao {
|
|
|
}
|
|
|
return 0;
|
|
|
});
|
|
|
- for(let glj of gljDatas){
|
|
|
- hintsArr.push(` ${glj.code} ${glj.name}${glj.specs ? ' ' + glj.specs : ''}   ${glj.unit} ${gljAmtMapping[glj.ID]}`)
|
|
|
- }
|
|
|
- hintsArr.push(`基价 元 ${ration.basePrice}`);
|
|
|
if(ration.jobContent && ration.jobContent.toString().trim() !== ''){
|
|
|
- hintsArr.push(`工作内容:`);
|
|
|
+ hintsArr.push(`<label class="nomargin font_blue">工作内容:`);
|
|
|
hintsArr = hintsArr.concat(ration.jobContent.split('\n'));
|
|
|
+ hintsArr.push("</label>");
|
|
|
+ hintsArr.push("");
|
|
|
}
|
|
|
+ for(let glj of gljDatas){
|
|
|
+ hintsArr.push(`<label class="nomargin ${glj.gljType==4?"font_blue":""}"> ${glj.code} ${glj.name}${glj.specs ? ' ' + glj.specs : ''}   ${glj.unit} ${gljAmtMapping[glj.ID]}</label>`)
|
|
|
+ }
|
|
|
+ hintsArr.push(`基价 元 ${ration.basePrice}`);
|
|
|
if(ration.annotation && ration.annotation.toString().trim() !== ''){
|
|
|
- hintsArr.push(`附注:`);
|
|
|
+ hintsArr.push(`<br>附注:`);
|
|
|
hintsArr = hintsArr.concat(ration.annotation.split('\n'));
|
|
|
}
|
|
|
ration._doc.hint = hintsArr.join('<br>');
|