|
|
@@ -267,7 +267,11 @@
|
|
|
</select>
|
|
|
</span>
|
|
|
</div>
|
|
|
- <label class="form-label col-xs-4 col-sm-2"><span class="c-red"></span><span class="c-red">*</span>项目小类:</label>
|
|
|
+
|
|
|
+ <label class="form-label col-xs-4 col-sm-2">
|
|
|
+ <span class="icon-question-sign" id="tips" title="" hidden>?</span>
|
|
|
+ <span class="c-red">*</span>项目小类:
|
|
|
+ </label>
|
|
|
<div class="formControls col-xs-8 col-sm-4">
|
|
|
<span class="select-box">
|
|
|
<input type="hidden" th:id="project_name" th:name="project_name"/>
|
|
|
@@ -515,6 +519,7 @@
|
|
|
$("#project_name").val(projects[0].project_name);
|
|
|
//获取材料模板
|
|
|
// getTemplateFiles(null ,projects[0].id);
|
|
|
+ weatherTips()
|
|
|
} else {
|
|
|
$("#project_id").find("option").remove();
|
|
|
$("#project_name").val("");
|
|
|
@@ -533,6 +538,32 @@
|
|
|
function changeProject(obj) {
|
|
|
$("#project_name").val($(obj).find("option:selected").attr("project_name"));
|
|
|
// getTemplateFiles(obj);
|
|
|
+ weatherTips()
|
|
|
+ }
|
|
|
+
|
|
|
+ function weatherTips(){
|
|
|
+ var text = $("#project_id").find("option:selected").text();
|
|
|
+ if(text == "鼓励企业创新发展(1)"){
|
|
|
+ $("#tips").attr("title","获评企国家、省工业企业质量标杆的。");
|
|
|
+ $("#tips").show();
|
|
|
+ }else if(text == "鼓励企业创新发展(2)"){
|
|
|
+ $("#tips").attr("title","获评省自主工业品牌50强的。");
|
|
|
+ $("#tips").show();
|
|
|
+ }else if(text == "鼓励企业创新发展(3)"){
|
|
|
+ $("#tips").attr("title","获得国家级单项冠军示范企业、培育企业、单项冠军产品企业称号。");
|
|
|
+ $("#tips").show();
|
|
|
+ }else if(text == "鼓励企业创新发展(4)"){
|
|
|
+ $("#tips").attr("title","获得国家级专精特新小巨人企业、省专精特新企业(含省专精特新产品企业、科技小巨人企业、隐形冠军企业、隐形小巨人企业)、市专精特新企业称号的。");
|
|
|
+ $("#tips").show();
|
|
|
+ }else if(text == "鼓励企业创新发展(5)"){
|
|
|
+ $("#tips").attr("title","列入省重点推广应用目录的新产品新技术、省重点技术创新导向性计划奖励项目的。");
|
|
|
+ $("#tips").show();
|
|
|
+ }else if(text == "鼓励企业创新发展(6)"){
|
|
|
+ $("#tips").attr("title","获评中国优秀工业设计奖(产品设计)金奖、优秀奖产品,获评省工业设计产品金奖、银奖、铜奖的产品。");
|
|
|
+ $("#tips").show();
|
|
|
+ }else{
|
|
|
+ $("#tips").hide();
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
function getTemplateFiles(obj, pid) {
|