指标具体功能
This commit is contained in:
parent
55e4193e97
commit
54066b5a20
@ -18,6 +18,10 @@ public class BasicCheckPersonActionDTO {
|
|||||||
private String reportId;
|
private String reportId;
|
||||||
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
||||||
private String dutyIndexLibId;
|
private String dutyIndexLibId;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "dutyIndexLibName", value = "指标名称")
|
||||||
|
private String dutyIndexLibName;
|
||||||
|
|
||||||
@ApiModelProperty(name = "actionTime", value = "时间")
|
@ApiModelProperty(name = "actionTime", value = "时间")
|
||||||
private String actionTime;
|
private String actionTime;
|
||||||
@ApiModelProperty(name = "streetOrgName", value = "街道办事处")
|
@ApiModelProperty(name = "streetOrgName", value = "街道办事处")
|
||||||
@ -50,6 +54,14 @@ public class BasicCheckPersonActionDTO {
|
|||||||
this.dutyIndexLibId = dutyIndexLibId;
|
this.dutyIndexLibId = dutyIndexLibId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getDutyIndexLibName() {
|
||||||
|
return dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDutyIndexLibName(String dutyIndexLibName) {
|
||||||
|
this.dutyIndexLibName = dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
public String getActionTime() {
|
public String getActionTime() {
|
||||||
return actionTime == null ? "" : actionTime.trim();
|
return actionTime == null ? "" : actionTime.trim();
|
||||||
}
|
}
|
||||||
|
@ -18,6 +18,10 @@ public class BasicCheckPersonInfoDTO {
|
|||||||
private String reportId;
|
private String reportId;
|
||||||
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
||||||
private String dutyIndexLibId;
|
private String dutyIndexLibId;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "dutyIndexLibName", value = "指标名称")
|
||||||
|
private String dutyIndexLibName;
|
||||||
|
|
||||||
@ApiModelProperty(name = "orgName", value = "单位名称")
|
@ApiModelProperty(name = "orgName", value = "单位名称")
|
||||||
private String orgName;
|
private String orgName;
|
||||||
@ApiModelProperty(name = "noteTaker", value = "填表人")
|
@ApiModelProperty(name = "noteTaker", value = "填表人")
|
||||||
@ -63,6 +67,15 @@ public class BasicCheckPersonInfoDTO {
|
|||||||
this.dutyIndexLibId = dutyIndexLibId;
|
this.dutyIndexLibId = dutyIndexLibId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public String getDutyIndexLibName() {
|
||||||
|
return dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDutyIndexLibName(String dutyIndexLibName) {
|
||||||
|
this.dutyIndexLibName = dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
public String getOrgName() {
|
public String getOrgName() {
|
||||||
return orgName == null ? "" : orgName.trim();
|
return orgName == null ? "" : orgName.trim();
|
||||||
}
|
}
|
||||||
|
@ -18,6 +18,8 @@ public class IndexGeneralDTO {
|
|||||||
private String indexGeneralId;
|
private String indexGeneralId;
|
||||||
@ApiModelProperty(name = "indexLibId", value = "指标ID")
|
@ApiModelProperty(name = "indexLibId", value = "指标ID")
|
||||||
private String indexLibId;
|
private String indexLibId;
|
||||||
|
@ApiModelProperty(name = "indexLibName", value = "指标名称")
|
||||||
|
private String indexLibName;
|
||||||
@ApiModelProperty(name = "indexGeneralTitle", value = "上报标题")
|
@ApiModelProperty(name = "indexGeneralTitle", value = "上报标题")
|
||||||
private String indexGeneralTitle;
|
private String indexGeneralTitle;
|
||||||
@ApiModelProperty(name = "indexGeneralContent", value = "上报正文")
|
@ApiModelProperty(name = "indexGeneralContent", value = "上报正文")
|
||||||
@ -44,6 +46,14 @@ public class IndexGeneralDTO {
|
|||||||
this.indexLibId = indexLibId;
|
this.indexLibId = indexLibId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getIndexLibName() {
|
||||||
|
return indexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndexLibName(String indexLibName) {
|
||||||
|
this.indexLibName = indexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
public String getIndexGeneralTitle() {
|
public String getIndexGeneralTitle() {
|
||||||
return indexGeneralTitle == null ? "" : indexGeneralTitle.trim();
|
return indexGeneralTitle == null ? "" : indexGeneralTitle.trim();
|
||||||
}
|
}
|
||||||
|
@ -18,6 +18,10 @@ public class PartyPunishInfoDTO {
|
|||||||
private String reportId;
|
private String reportId;
|
||||||
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
||||||
private String dutyIndexLibId;
|
private String dutyIndexLibId;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "dutyIndexLibName", value = "指标名称")
|
||||||
|
private String dutyIndexLibName;
|
||||||
|
|
||||||
@ApiModelProperty(name = "personName", value = "姓名")
|
@ApiModelProperty(name = "personName", value = "姓名")
|
||||||
private String personName;
|
private String personName;
|
||||||
@ApiModelProperty(name = "partyOrg", value = "所属社区党支部")
|
@ApiModelProperty(name = "partyOrg", value = "所属社区党支部")
|
||||||
@ -67,6 +71,14 @@ public class PartyPunishInfoDTO {
|
|||||||
this.dutyIndexLibId = dutyIndexLibId;
|
this.dutyIndexLibId = dutyIndexLibId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getDutyIndexLibName() {
|
||||||
|
return dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDutyIndexLibName(String dutyIndexLibName) {
|
||||||
|
this.dutyIndexLibName = dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
public String getPersonName() {
|
public String getPersonName() {
|
||||||
return personName == null ? "" : personName.trim();
|
return personName == null ? "" : personName.trim();
|
||||||
}
|
}
|
||||||
|
@ -18,6 +18,11 @@ public class ProblemClueDTO {
|
|||||||
private String reportId;
|
private String reportId;
|
||||||
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
||||||
private String dutyIndexLibId;
|
private String dutyIndexLibId;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "dutyIndexLibName", value = "指标名称")
|
||||||
|
private String dutyIndexLibName;
|
||||||
|
|
||||||
@ApiModelProperty(name = "caseNumber", value = "案件号")
|
@ApiModelProperty(name = "caseNumber", value = "案件号")
|
||||||
private String caseNumber;
|
private String caseNumber;
|
||||||
@ApiModelProperty(name = "handoverNumber", value = "交办文号")
|
@ApiModelProperty(name = "handoverNumber", value = "交办文号")
|
||||||
@ -71,6 +76,14 @@ public class ProblemClueDTO {
|
|||||||
this.dutyIndexLibId = dutyIndexLibId;
|
this.dutyIndexLibId = dutyIndexLibId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getDutyIndexLibName() {
|
||||||
|
return dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDutyIndexLibName(String dutyIndexLibName) {
|
||||||
|
this.dutyIndexLibName = dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
public String getCaseNumber() {
|
public String getCaseNumber() {
|
||||||
return caseNumber == null ? "" : caseNumber.trim();
|
return caseNumber == null ? "" : caseNumber.trim();
|
||||||
}
|
}
|
||||||
|
@ -18,6 +18,10 @@ public class SuperviseCheckDTO {
|
|||||||
private String reportId;
|
private String reportId;
|
||||||
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
||||||
private String dutyIndexLibId;
|
private String dutyIndexLibId;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "dutyIndexLibName", value = "指标名称")
|
||||||
|
private String dutyIndexLibName;
|
||||||
|
|
||||||
@ApiModelProperty(name = "checkPhotos", value = "附加图片")
|
@ApiModelProperty(name = "checkPhotos", value = "附加图片")
|
||||||
private String checkPhotos;
|
private String checkPhotos;
|
||||||
@ApiModelProperty(name = "checkPlace", value = "检查地点")
|
@ApiModelProperty(name = "checkPlace", value = "检查地点")
|
||||||
@ -51,6 +55,14 @@ public class SuperviseCheckDTO {
|
|||||||
this.dutyIndexLibId = dutyIndexLibId;
|
this.dutyIndexLibId = dutyIndexLibId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getDutyIndexLibName() {
|
||||||
|
return dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDutyIndexLibName(String dutyIndexLibName) {
|
||||||
|
this.dutyIndexLibName = dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
public String getCheckPhotos() {
|
public String getCheckPhotos() {
|
||||||
return checkPhotos == null ? "" : checkPhotos.trim();
|
return checkPhotos == null ? "" : checkPhotos.trim();
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,8 @@ public class BasicCheckPersonActionVO {
|
|||||||
private String reportId;
|
private String reportId;
|
||||||
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
||||||
private String dutyIndexLibId;
|
private String dutyIndexLibId;
|
||||||
|
@ApiModelProperty(name = "dutyIndexLibName", value = "指标名称")
|
||||||
|
private String dutyIndexLibName;
|
||||||
@ApiModelProperty(name = "actionTime", value = "时间")
|
@ApiModelProperty(name = "actionTime", value = "时间")
|
||||||
@CheckEmptyAnnotation(name = "时间", verifyType = "datetime")
|
@CheckEmptyAnnotation(name = "时间", verifyType = "datetime")
|
||||||
private String actionTime;
|
private String actionTime;
|
||||||
@ -52,6 +54,14 @@ public class BasicCheckPersonActionVO {
|
|||||||
this.dutyIndexLibId = dutyIndexLibId;
|
this.dutyIndexLibId = dutyIndexLibId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getDutyIndexLibName() {
|
||||||
|
return dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDutyIndexLibName(String dutyIndexLibName) {
|
||||||
|
this.dutyIndexLibName = dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
public String getActionTime() {
|
public String getActionTime() {
|
||||||
return actionTime == null ? "" : actionTime.trim();
|
return actionTime == null ? "" : actionTime.trim();
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,9 @@ public class BasicCheckPersonInfoVO {
|
|||||||
private String reportId;
|
private String reportId;
|
||||||
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
||||||
private String dutyIndexLibId;
|
private String dutyIndexLibId;
|
||||||
|
@ApiModelProperty(name = "dutyIndexLibName", value = "指标名称")
|
||||||
|
private String dutyIndexLibName;
|
||||||
|
|
||||||
@ApiModelProperty(name = "orgName", value = "单位名称")
|
@ApiModelProperty(name = "orgName", value = "单位名称")
|
||||||
private String orgName;
|
private String orgName;
|
||||||
@ApiModelProperty(name = "noteTaker", value = "填表人")
|
@ApiModelProperty(name = "noteTaker", value = "填表人")
|
||||||
@ -69,6 +72,14 @@ public class BasicCheckPersonInfoVO {
|
|||||||
this.dutyIndexLibId = dutyIndexLibId;
|
this.dutyIndexLibId = dutyIndexLibId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getDutyIndexLibName() {
|
||||||
|
return dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDutyIndexLibName(String dutyIndexLibName) {
|
||||||
|
this.dutyIndexLibName = dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
public String getOrgName() {
|
public String getOrgName() {
|
||||||
return orgName == null ? "" : orgName.trim();
|
return orgName == null ? "" : orgName.trim();
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,9 @@ public class IndexGeneralVO {
|
|||||||
private String indexGeneralId;
|
private String indexGeneralId;
|
||||||
@ApiModelProperty(name = "indexLibId", value = "指标ID")
|
@ApiModelProperty(name = "indexLibId", value = "指标ID")
|
||||||
private String indexLibId;
|
private String indexLibId;
|
||||||
|
@ApiModelProperty(name = "indexLibIdName", value = "指标名称")
|
||||||
|
private String indexLibIdName;
|
||||||
|
|
||||||
@ApiModelProperty(name = "indexGeneralTitle", value = "上报标题")
|
@ApiModelProperty(name = "indexGeneralTitle", value = "上报标题")
|
||||||
private String indexGeneralTitle;
|
private String indexGeneralTitle;
|
||||||
@ApiModelProperty(name = "indexGeneralContent", value = "上报正文")
|
@ApiModelProperty(name = "indexGeneralContent", value = "上报正文")
|
||||||
@ -47,6 +50,14 @@ public class IndexGeneralVO {
|
|||||||
this.indexLibId = indexLibId;
|
this.indexLibId = indexLibId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getIndexLibIdName() {
|
||||||
|
return indexLibIdName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndexLibIdName(String indexLibIdName) {
|
||||||
|
this.indexLibIdName = indexLibIdName;
|
||||||
|
}
|
||||||
|
|
||||||
public String getIndexGeneralTitle() {
|
public String getIndexGeneralTitle() {
|
||||||
return indexGeneralTitle == null ? "" : indexGeneralTitle.trim();
|
return indexGeneralTitle == null ? "" : indexGeneralTitle.trim();
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,8 @@ public class PartyPunishInfoVO {
|
|||||||
private String reportId;
|
private String reportId;
|
||||||
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
||||||
private String dutyIndexLibId;
|
private String dutyIndexLibId;
|
||||||
|
@ApiModelProperty(name = "dutyIndexLibName", value = "指标名称")
|
||||||
|
private String dutyIndexLibName;
|
||||||
@ApiModelProperty(name = "personName", value = "姓名")
|
@ApiModelProperty(name = "personName", value = "姓名")
|
||||||
private String personName;
|
private String personName;
|
||||||
@ApiModelProperty(name = "partyOrg", value = "所属社区党支部")
|
@ApiModelProperty(name = "partyOrg", value = "所属社区党支部")
|
||||||
@ -68,6 +70,14 @@ public class PartyPunishInfoVO {
|
|||||||
this.dutyIndexLibId = dutyIndexLibId;
|
this.dutyIndexLibId = dutyIndexLibId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getDutyIndexLibName() {
|
||||||
|
return dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDutyIndexLibName(String dutyIndexLibName) {
|
||||||
|
this.dutyIndexLibName = dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
public String getPersonName() {
|
public String getPersonName() {
|
||||||
return personName == null ? "" : personName.trim();
|
return personName == null ? "" : personName.trim();
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,8 @@ public class ProblemClueVO {
|
|||||||
private String reportId;
|
private String reportId;
|
||||||
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
||||||
private String dutyIndexLibId;
|
private String dutyIndexLibId;
|
||||||
|
@ApiModelProperty(name = "dutyIndexLibName", value = "指标名称")
|
||||||
|
private String dutyIndexLibName;
|
||||||
@ApiModelProperty(name = "caseNumber", value = "案件号")
|
@ApiModelProperty(name = "caseNumber", value = "案件号")
|
||||||
private String caseNumber;
|
private String caseNumber;
|
||||||
@ApiModelProperty(name = "handoverNumber", value = "交办文号")
|
@ApiModelProperty(name = "handoverNumber", value = "交办文号")
|
||||||
@ -73,6 +75,14 @@ public class ProblemClueVO {
|
|||||||
this.dutyIndexLibId = dutyIndexLibId;
|
this.dutyIndexLibId = dutyIndexLibId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getDutyIndexLibName() {
|
||||||
|
return dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDutyIndexLibName(String dutyIndexLibName) {
|
||||||
|
this.dutyIndexLibName = dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
public String getCaseNumber() {
|
public String getCaseNumber() {
|
||||||
return caseNumber == null ? "" : caseNumber.trim();
|
return caseNumber == null ? "" : caseNumber.trim();
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,10 @@ public class SuperviseCheckVO {
|
|||||||
private String reportId;
|
private String reportId;
|
||||||
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
@ApiModelProperty(name = "dutyIndexLibId", value = "指标ID")
|
||||||
private String dutyIndexLibId;
|
private String dutyIndexLibId;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "dutyIndexLibName", value = "指标名称")
|
||||||
|
private String dutyIndexLibName;
|
||||||
|
|
||||||
@ApiModelProperty(name = "checkPhotos", value = "附加图片")
|
@ApiModelProperty(name = "checkPhotos", value = "附加图片")
|
||||||
private String checkPhotos;
|
private String checkPhotos;
|
||||||
@ApiModelProperty(name = "checkPlace", value = "检查地点")
|
@ApiModelProperty(name = "checkPlace", value = "检查地点")
|
||||||
@ -54,6 +58,14 @@ public class SuperviseCheckVO {
|
|||||||
this.dutyIndexLibId = dutyIndexLibId;
|
this.dutyIndexLibId = dutyIndexLibId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getDutyIndexLibName() {
|
||||||
|
return dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDutyIndexLibName(String dutyIndexLibName) {
|
||||||
|
this.dutyIndexLibName = dutyIndexLibName;
|
||||||
|
}
|
||||||
|
|
||||||
public String getCheckPhotos() {
|
public String getCheckPhotos() {
|
||||||
return checkPhotos == null ? "" : checkPhotos.trim();
|
return checkPhotos == null ? "" : checkPhotos.trim();
|
||||||
}
|
}
|
||||||
|
@ -114,9 +114,6 @@
|
|||||||
UPDATE
|
UPDATE
|
||||||
t_basic_check_person_action
|
t_basic_check_person_action
|
||||||
SET
|
SET
|
||||||
<if test="dutyIndexLibId != null and dutyIndexLibId != ''">
|
|
||||||
duty_index_lib_id = #{dutyIndexLibId},
|
|
||||||
</if>
|
|
||||||
<if test="actionTime != null and actionTime != ''">
|
<if test="actionTime != null and actionTime != ''">
|
||||||
action_time = #{actionTime},
|
action_time = #{actionTime},
|
||||||
</if>
|
</if>
|
||||||
@ -246,6 +243,9 @@
|
|||||||
AND
|
AND
|
||||||
LEFT(t1.gmt_create, 10) <![CDATA[ <= ]]> #{endTime}
|
LEFT(t1.gmt_create, 10) <![CDATA[ <= ]]> #{endTime}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="indexLibId != null and indexLibId != ''">
|
||||||
|
AND t1.duty_index_lib_id = #{indexLibId}
|
||||||
|
</if>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<!-- 列表 -->
|
<!-- 列表 -->
|
||||||
|
@ -149,9 +149,6 @@
|
|||||||
UPDATE
|
UPDATE
|
||||||
t_basic_check_person_info
|
t_basic_check_person_info
|
||||||
SET
|
SET
|
||||||
<if test="dutyIndexLibId != null and dutyIndexLibId != ''">
|
|
||||||
duty_index_lib_id = #{dutyIndexLibId},
|
|
||||||
</if>
|
|
||||||
<if test="orgName != null and orgName != ''">
|
<if test="orgName != null and orgName != ''">
|
||||||
org_name = #{orgName},
|
org_name = #{orgName},
|
||||||
</if>
|
</if>
|
||||||
@ -329,6 +326,9 @@
|
|||||||
AND
|
AND
|
||||||
LEFT(t1.gmt_create, 10) <![CDATA[ <= ]]> #{endTime}
|
LEFT(t1.gmt_create, 10) <![CDATA[ <= ]]> #{endTime}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="indexLibId != null and indexLibId != ''">
|
||||||
|
AND t1.duty_index_lib_id = #{indexLibId}
|
||||||
|
</if>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<!-- 列表 -->
|
<!-- 列表 -->
|
||||||
|
@ -223,6 +223,9 @@
|
|||||||
#{indexGeneralIds[${index}]}
|
#{indexGeneralIds[${index}]}
|
||||||
</foreach>
|
</foreach>
|
||||||
</if>
|
</if>
|
||||||
|
<if test="indexLibId != null and indexLibId != ''">
|
||||||
|
AND t1.index_lib_id = #{indexLibId}
|
||||||
|
</if>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<!-- 列表 -->
|
<!-- 列表 -->
|
||||||
|
@ -85,8 +85,8 @@
|
|||||||
is_delete = 1
|
is_delete = 1
|
||||||
WHERE
|
WHERE
|
||||||
index_template_id IN
|
index_template_id IN
|
||||||
<foreach collection="indexLibIds" index="index" open="(" separator="," close=")">
|
<foreach collection="indexTemplateIds" index="index" open="(" separator="," close=")">
|
||||||
#{indexLibIds[${index}]}
|
#{indexTemplateIds[${index}]}
|
||||||
</foreach>
|
</foreach>
|
||||||
</update>
|
</update>
|
||||||
|
|
||||||
|
@ -151,9 +151,6 @@
|
|||||||
UPDATE
|
UPDATE
|
||||||
t_party_punish_info
|
t_party_punish_info
|
||||||
SET
|
SET
|
||||||
<if test="dutyIndexLibId != null and dutyIndexLibId != ''">
|
|
||||||
duty_index_lib_id = #{dutyIndexLibId},
|
|
||||||
</if>
|
|
||||||
<if test="personName != null and personName != ''">
|
<if test="personName != null and personName != ''">
|
||||||
person_name = #{personName},
|
person_name = #{personName},
|
||||||
</if>
|
</if>
|
||||||
@ -196,12 +193,8 @@
|
|||||||
<if test="remarks != null and remarks != ''">
|
<if test="remarks != null and remarks != ''">
|
||||||
remarks = #{remarks},
|
remarks = #{remarks},
|
||||||
</if>
|
</if>
|
||||||
<if test="creator != null and creator != ''">
|
gmt_modified = #{gmtModified},
|
||||||
creator = #{creator},
|
modifier = #{modifier}
|
||||||
</if>
|
|
||||||
<if test="gmtCreate != null and gmtCreate != ''">
|
|
||||||
gmt_create = #{gmtCreate},
|
|
||||||
</if>
|
|
||||||
WHERE
|
WHERE
|
||||||
report_id = #{reportId}
|
report_id = #{reportId}
|
||||||
</update>
|
</update>
|
||||||
@ -319,7 +312,6 @@
|
|||||||
t1.remarks,
|
t1.remarks,
|
||||||
t1.creator,
|
t1.creator,
|
||||||
t1.gmt_create
|
t1.gmt_create
|
||||||
|
|
||||||
FROM
|
FROM
|
||||||
t_party_punish_info t1
|
t_party_punish_info t1
|
||||||
WHERE
|
WHERE
|
||||||
@ -338,6 +330,9 @@
|
|||||||
AND
|
AND
|
||||||
LEFT(t1.gmt_create, 10) <![CDATA[ <= ]]> #{endTime}
|
LEFT(t1.gmt_create, 10) <![CDATA[ <= ]]> #{endTime}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="indexLibId != null and indexLibId != ''">
|
||||||
|
AND t1.duty_index_lib_id = {indexLibId}
|
||||||
|
</if>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<!-- 列表 -->
|
<!-- 列表 -->
|
||||||
|
@ -161,9 +161,6 @@
|
|||||||
UPDATE
|
UPDATE
|
||||||
t_problem_clue
|
t_problem_clue
|
||||||
SET
|
SET
|
||||||
<if test="dutyIndexLibId != null and dutyIndexLibId != ''">
|
|
||||||
duty_index_lib_id = #{dutyIndexLibId},
|
|
||||||
</if>
|
|
||||||
<if test="caseNumber != null and caseNumber != ''">
|
<if test="caseNumber != null and caseNumber != ''">
|
||||||
case_number = #{caseNumber},
|
case_number = #{caseNumber},
|
||||||
</if>
|
</if>
|
||||||
@ -334,8 +331,7 @@
|
|||||||
t1.case_result,
|
t1.case_result,
|
||||||
t1.remarks,
|
t1.remarks,
|
||||||
t1.creator,
|
t1.creator,
|
||||||
t1.gmt_create,
|
t1.gmt_create
|
||||||
1
|
|
||||||
FROM
|
FROM
|
||||||
t_problem_clue t1
|
t_problem_clue t1
|
||||||
WHERE
|
WHERE
|
||||||
@ -354,6 +350,9 @@
|
|||||||
AND
|
AND
|
||||||
LEFT(t1.gmt_create, 10) <![CDATA[ <= ]]> #{endTime}
|
LEFT(t1.gmt_create, 10) <![CDATA[ <= ]]> #{endTime}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="indexLibId != null and indexLibId != ''">
|
||||||
|
AND t1.duty_index_lib_id = #{indexLibId}
|
||||||
|
</if>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<!-- 列表 -->
|
<!-- 列表 -->
|
||||||
|
@ -235,8 +235,7 @@
|
|||||||
t1.check_info,
|
t1.check_info,
|
||||||
t1.check_content,
|
t1.check_content,
|
||||||
t1.check_problem,
|
t1.check_problem,
|
||||||
t1.check_result,
|
t1.check_result
|
||||||
1
|
|
||||||
FROM
|
FROM
|
||||||
t_supervise_check t1
|
t_supervise_check t1
|
||||||
WHERE
|
WHERE
|
||||||
@ -255,6 +254,9 @@
|
|||||||
AND
|
AND
|
||||||
LEFT(t1.gmt_create, 10) <![CDATA[ <= ]]> #{endTime}
|
LEFT(t1.gmt_create, 10) <![CDATA[ <= ]]> #{endTime}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="indexLibId != null and indexLibId != ''">
|
||||||
|
AND t1.duty_index_lib_id = #{indexLibId}
|
||||||
|
</if>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<!-- 列表 -->
|
<!-- 列表 -->
|
||||||
|
@ -86,33 +86,7 @@
|
|||||||
[
|
[
|
||||||
{type:'checkbox', fixed: 'left'},
|
{type:'checkbox', fixed: 'left'},
|
||||||
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
||||||
{field: 'reportId', width: 180, title: '主键ID', align:'center',
|
|
||||||
templet: function(row) {
|
|
||||||
var rowData = row[this.field];
|
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
||||||
return '-';
|
|
||||||
}
|
|
||||||
return rowData;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{field: 'dutyIndexLibId', width: 180, title: '指标ID', align:'center',
|
|
||||||
templet: function(row) {
|
|
||||||
var rowData = row[this.field];
|
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
||||||
return '-';
|
|
||||||
}
|
|
||||||
return rowData;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{field: 'actionTime', width: 180, title: '时间', align:'center',
|
|
||||||
templet: function(row) {
|
|
||||||
var rowData = row[this.field];
|
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
||||||
return '-';
|
|
||||||
}
|
|
||||||
return rowData;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{field: 'streetOrgName', width: 180, title: '街道办事处', align:'center',
|
{field: 'streetOrgName', width: 180, title: '街道办事处', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var rowData = row[this.field];
|
var rowData = row[this.field];
|
||||||
@ -158,6 +132,15 @@
|
|||||||
return rowData;
|
return rowData;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{field: 'actionTime', width: 180, title: '时间', align:'center',
|
||||||
|
templet: function(row) {
|
||||||
|
var rowData = row[this.field];
|
||||||
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
||||||
|
return '-';
|
||||||
|
}
|
||||||
|
return rowData;
|
||||||
|
}
|
||||||
|
},
|
||||||
{field: 'remarks', width: 180, title: '备注', align:'center',
|
{field: 'remarks', width: 180, title: '备注', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var rowData = row[this.field];
|
var rowData = row[this.field];
|
||||||
|
@ -86,24 +86,6 @@
|
|||||||
[
|
[
|
||||||
{type:'checkbox', fixed: 'left'},
|
{type:'checkbox', fixed: 'left'},
|
||||||
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
||||||
{field: 'reportId', width: 180, title: '主键ID', align:'center',
|
|
||||||
templet: function(row) {
|
|
||||||
var rowData = row[this.field];
|
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
||||||
return '-';
|
|
||||||
}
|
|
||||||
return rowData;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{field: 'dutyIndexLibId', width: 180, title: '指标ID', align:'center',
|
|
||||||
templet: function(row) {
|
|
||||||
var rowData = row[this.field];
|
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
||||||
return '-';
|
|
||||||
}
|
|
||||||
return rowData;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{field: 'orgName', width: 180, title: '单位名称', align:'center',
|
{field: 'orgName', width: 180, title: '单位名称', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var rowData = row[this.field];
|
var rowData = row[this.field];
|
||||||
|
@ -29,12 +29,7 @@
|
|||||||
<input type="text" id="dutyIndexLibName" name="dutyIndexLibName" class="layui-input" readonly="readonly">
|
<input type="text" id="dutyIndexLibName" name="dutyIndexLibName" class="layui-input" readonly="readonly">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="layui-form-item">
|
|
||||||
<label class="layui-form-label">姓名</label>
|
|
||||||
<div class="layui-input-block">
|
|
||||||
<input type="text" id="personName" name="personName" class="layui-input" value="" placeholder="请输入姓名" maxlength="255">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="layui-form-item">
|
<div class="layui-form-item">
|
||||||
<label class="layui-form-label">单位名称</label>
|
<label class="layui-form-label">单位名称</label>
|
||||||
<div class="layui-input-block">
|
<div class="layui-input-block">
|
||||||
@ -53,17 +48,33 @@
|
|||||||
<input type="text" id="orgAttribute" name="orgAttribute" class="layui-input" value="" placeholder="请输入单位性质" maxlength="255">
|
<input type="text" id="orgAttribute" name="orgAttribute" class="layui-input" value="" placeholder="请输入单位性质" maxlength="255">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="layui-form-item">
|
||||||
|
<label class="layui-form-label">姓名</label>
|
||||||
|
<div class="layui-input-block">
|
||||||
|
<input type="text" id="personName" name="personName" class="layui-input" value="" placeholder="请输入姓名" maxlength="255">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="layui-form-item">
|
<div class="layui-form-item">
|
||||||
<label class="layui-form-label">性别</label>
|
<label class="layui-form-label">性别</label>
|
||||||
<div class="layui-input-block">
|
<div class="layui-input-block">
|
||||||
<input type="text" id="gender" name="gender" class="layui-input" value="" placeholder="请输入性别" maxlength="2">
|
<select name="gender" lay-verify="required">
|
||||||
|
<option value=""></option>
|
||||||
|
<option value="1">男</option>
|
||||||
|
<option value="2">女</option>
|
||||||
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="layui-form-item">
|
<div class="layui-form-item">
|
||||||
<label class="layui-form-label">民族</label>
|
<label class="layui-form-label">民族</label>
|
||||||
<div class="layui-input-block">
|
<div class="layui-input-block layui-form" id="nationTemplateBox" lay-filter="nationTemplateBox"></div>
|
||||||
<input type="text" id="nation" name="nation" class="layui-input" value="" placeholder="请输入民族" maxlength="255">
|
<script id="nationTemplate" type="text/html">
|
||||||
</div>
|
<select name="nation">
|
||||||
|
<option value="">请选择</option>
|
||||||
|
{{# for(var i = 0, item; item = d[i++];) { }}
|
||||||
|
<option value="{{item.dataId}}">{{item.dataName}}</option>
|
||||||
|
{{# } }}
|
||||||
|
</select>
|
||||||
|
</script>
|
||||||
</div>
|
</div>
|
||||||
<div class="layui-form-item">
|
<div class="layui-form-item">
|
||||||
<label class="layui-form-label">出生年月</label>
|
<label class="layui-form-label">出生年月</label>
|
||||||
@ -73,9 +84,15 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="layui-form-item">
|
<div class="layui-form-item">
|
||||||
<label class="layui-form-label">学历</label>
|
<label class="layui-form-label">学历</label>
|
||||||
<div class="layui-input-block">
|
<div class="layui-input-block layui-form" id="educationTemplateBox" lay-filter="educationTemplateBox"></div>
|
||||||
<input type="text" id="education" name="education" class="layui-input" value="" placeholder="请输入学历" maxlength="50">
|
<script id="educationTemplate" type="text/html">
|
||||||
</div>
|
<select name="education">
|
||||||
|
<option value="">请选择</option>
|
||||||
|
{{# for(var i = 0, item; item = d[i++];) { }}
|
||||||
|
<option value="{{item.dataId}}">{{item.dataName}}</option>
|
||||||
|
{{# } }}
|
||||||
|
</select>
|
||||||
|
</script>
|
||||||
</div>
|
</div>
|
||||||
<div class="layui-form-item">
|
<div class="layui-form-item">
|
||||||
<label class="layui-form-label">毕业院校</label>
|
<label class="layui-form-label">毕业院校</label>
|
||||||
@ -241,6 +258,27 @@
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//初始化民族数据字典
|
||||||
|
function initNationTemplate(){
|
||||||
|
top.restAjax.get(top.restAjax.path("api/data/listbyparentid/{dataParentId}",['5b6f16c5-6c5f-4314-b4cd-8b594187e2c8']),{},null,function (code,data,args) {
|
||||||
|
laytpl(document.getElementById('nationTemplate').innerHTML).render(data, function(html) {
|
||||||
|
document.getElementById('nationTemplateBox').innerHTML = html;
|
||||||
|
});
|
||||||
|
form.render('select', 'nationTemplateBox');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
//初始化学历数据字典
|
||||||
|
function initEducationTemplate(){
|
||||||
|
top.restAjax.get(top.restAjax.path("api/data/listbyparentid/{dataParentId}",['3d9fa108-b20b-458a-91ee-2529bb4c8581']),{},null,function (code,data,args) {
|
||||||
|
laytpl(document.getElementById('educationTemplate').innerHTML).render(data, function(html) {
|
||||||
|
document.getElementById('educationTemplateBox').innerHTML = html;
|
||||||
|
});
|
||||||
|
form.render('select', 'educationTemplateBox');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// 初始化内容
|
// 初始化内容
|
||||||
function initData() {
|
function initData() {
|
||||||
@ -255,6 +293,8 @@
|
|||||||
initBirthDateDateTime();
|
initBirthDateDateTime();
|
||||||
initJoinPartyTimeDateTime();
|
initJoinPartyTimeDateTime();
|
||||||
initJoinWorkTimeDateTime();
|
initJoinWorkTimeDateTime();
|
||||||
|
initNationTemplate();
|
||||||
|
initEducationTemplate();
|
||||||
}, function(code, data) {
|
}, function(code, data) {
|
||||||
top.dialog.msg(data.msg);
|
top.dialog.msg(data.msg);
|
||||||
}, function() {
|
}, function() {
|
||||||
|
@ -29,12 +29,6 @@
|
|||||||
<input type="text" id="dutyIndexLibName" name="dutyIndexLibName" class="layui-input" readonly="readonly">
|
<input type="text" id="dutyIndexLibName" name="dutyIndexLibName" class="layui-input" readonly="readonly">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="layui-form-item">
|
|
||||||
<label class="layui-form-label">姓名</label>
|
|
||||||
<div class="layui-input-block">
|
|
||||||
<input type="text" id="personName" name="personName" class="layui-input" value="" placeholder="请输入姓名" maxlength="255">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="layui-form-item">
|
<div class="layui-form-item">
|
||||||
<label class="layui-form-label">单位名称</label>
|
<label class="layui-form-label">单位名称</label>
|
||||||
<div class="layui-input-block">
|
<div class="layui-input-block">
|
||||||
@ -53,17 +47,33 @@
|
|||||||
<input type="text" id="orgAttribute" name="orgAttribute" class="layui-input" value="" placeholder="请输入单位性质" maxlength="255">
|
<input type="text" id="orgAttribute" name="orgAttribute" class="layui-input" value="" placeholder="请输入单位性质" maxlength="255">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="layui-form-item">
|
||||||
|
<label class="layui-form-label">姓名</label>
|
||||||
|
<div class="layui-input-block">
|
||||||
|
<input type="text" id="personName" name="personName" class="layui-input" value="" placeholder="请输入姓名" maxlength="255">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="layui-form-item">
|
<div class="layui-form-item">
|
||||||
<label class="layui-form-label">性别</label>
|
<label class="layui-form-label">性别</label>
|
||||||
<div class="layui-input-block">
|
<div class="layui-input-block">
|
||||||
<input type="text" id="gender" name="gender" class="layui-input" value="" placeholder="请输入性别" maxlength="2">
|
<select name="gender" lay-verify="required">
|
||||||
|
<option value=""></option>
|
||||||
|
<option value="1">男</option>
|
||||||
|
<option value="2">女</option>
|
||||||
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="layui-form-item">
|
<div class="layui-form-item">
|
||||||
<label class="layui-form-label">民族</label>
|
<label class="layui-form-label">民族</label>
|
||||||
<div class="layui-input-block">
|
<div class="layui-input-block layui-form" id="nationTemplateBox" lay-filter="nationTemplateBox"></div>
|
||||||
<input type="text" id="nation" name="nation" class="layui-input" value="" placeholder="请输入民族" maxlength="255">
|
<script id="nationTemplate" type="text/html">
|
||||||
</div>
|
<select name="nation">
|
||||||
|
<option value="">请选择</option>
|
||||||
|
{{# for(var i = 0, item; item = d[i++];) { }}
|
||||||
|
<option value="{{item.dataId}}">{{item.dataName}}</option>
|
||||||
|
{{# } }}
|
||||||
|
</select>
|
||||||
|
</script>
|
||||||
</div>
|
</div>
|
||||||
<div class="layui-form-item">
|
<div class="layui-form-item">
|
||||||
<label class="layui-form-label">出生年月</label>
|
<label class="layui-form-label">出生年月</label>
|
||||||
@ -73,9 +83,15 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="layui-form-item">
|
<div class="layui-form-item">
|
||||||
<label class="layui-form-label">学历</label>
|
<label class="layui-form-label">学历</label>
|
||||||
<div class="layui-input-block">
|
<div class="layui-input-block layui-form" id="educationTemplateBox" lay-filter="educationTemplateBox"></div>
|
||||||
<input type="text" id="education" name="education" class="layui-input" value="" placeholder="请输入学历" maxlength="50">
|
<script id="educationTemplate" type="text/html">
|
||||||
</div>
|
<select name="education">
|
||||||
|
<option value="">请选择</option>
|
||||||
|
{{# for(var i = 0, item; item = d[i++];) { }}
|
||||||
|
<option value="{{item.dataId}}">{{item.dataName}}</option>
|
||||||
|
{{# } }}
|
||||||
|
</select>
|
||||||
|
</script>
|
||||||
</div>
|
</div>
|
||||||
<div class="layui-form-item">
|
<div class="layui-form-item">
|
||||||
<label class="layui-form-label">毕业院校</label>
|
<label class="layui-form-label">毕业院校</label>
|
||||||
@ -230,7 +246,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 初始化参加工作时间时间戳
|
// 初始化参加工作时间时间戳
|
||||||
function initJoinWorkTimeDateTime() {
|
function initJoinWorkTimeDateTime(v) {
|
||||||
laydate.render({
|
laydate.render({
|
||||||
elem: '#joinWorkTime',
|
elem: '#joinWorkTime',
|
||||||
type: 'datetime',
|
type: 'datetime',
|
||||||
@ -239,6 +255,32 @@
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//初始化民族数据字典
|
||||||
|
function initNationTemplate(v){
|
||||||
|
top.restAjax.get(top.restAjax.path("api/data/listbyparentid/{dataParentId}",['5b6f16c5-6c5f-4314-b4cd-8b594187e2c8']),{},null,function (code,data,args) {
|
||||||
|
laytpl(document.getElementById('nationTemplate').innerHTML).render(data, function(html) {
|
||||||
|
document.getElementById('nationTemplateBox').innerHTML = html;
|
||||||
|
});
|
||||||
|
form.render('select', 'nationTemplateBox');
|
||||||
|
var selectObj = {};
|
||||||
|
selectObj['nation'] = v;
|
||||||
|
form.val('dataForm', selectObj);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
//初始化学历数据字典
|
||||||
|
function initEducationTemplate(v){
|
||||||
|
top.restAjax.get(top.restAjax.path("api/data/listbyparentid/{dataParentId}",['3d9fa108-b20b-458a-91ee-2529bb4c8581']),{},null,function (code,data,args) {
|
||||||
|
laytpl(document.getElementById('educationTemplate').innerHTML).render(data, function(html) {
|
||||||
|
document.getElementById('educationTemplateBox').innerHTML = html;
|
||||||
|
});
|
||||||
|
form.render('select', 'educationTemplateBox');
|
||||||
|
var selectObj = {};
|
||||||
|
selectObj['education'] = v;
|
||||||
|
form.val('dataForm', selectObj);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// 初始化内容
|
// 初始化内容
|
||||||
function initData() {
|
function initData() {
|
||||||
@ -254,6 +296,8 @@
|
|||||||
initBirthDateDateTime(data.birthDate);
|
initBirthDateDateTime(data.birthDate);
|
||||||
initJoinPartyTimeDateTime(data.joinPartyTime);
|
initJoinPartyTimeDateTime(data.joinPartyTime);
|
||||||
initJoinWorkTimeDateTime(data.joinWorkTime);
|
initJoinWorkTimeDateTime(data.joinWorkTime);
|
||||||
|
initNationTemplate(data.nation);
|
||||||
|
initEducationTemplate(data.education);
|
||||||
}, function(code, data) {
|
}, function(code, data) {
|
||||||
top.dialog.msg(data.msg);
|
top.dialog.msg(data.msg);
|
||||||
}, function() {
|
}, function() {
|
||||||
|
@ -86,7 +86,7 @@
|
|||||||
[
|
[
|
||||||
{type:'checkbox', fixed: 'left'},
|
{type:'checkbox', fixed: 'left'},
|
||||||
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
||||||
{field: 'indexLibId', width: 180, title: '指标', align:'center',
|
{field: 'indexLibId', width: 180, title: '指标名称', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var rowData = row[this.field];
|
var rowData = row[this.field];
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
||||||
|
@ -86,24 +86,6 @@
|
|||||||
[
|
[
|
||||||
{type:'checkbox', fixed: 'left'},
|
{type:'checkbox', fixed: 'left'},
|
||||||
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
||||||
{field: 'reportId', width: 180, title: '主键ID', align:'center',
|
|
||||||
templet: function(row) {
|
|
||||||
var rowData = row[this.field];
|
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
||||||
return '-';
|
|
||||||
}
|
|
||||||
return rowData;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{field: 'dutyIndexLibId', width: 180, title: '指标ID', align:'center',
|
|
||||||
templet: function(row) {
|
|
||||||
var rowData = row[this.field];
|
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
||||||
return '-';
|
|
||||||
}
|
|
||||||
return rowData;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{field: 'caseNumber', width: 180, title: '案件号', align:'center',
|
{field: 'caseNumber', width: 180, title: '案件号', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var rowData = row[this.field];
|
var rowData = row[this.field];
|
||||||
|
@ -86,33 +86,6 @@
|
|||||||
[
|
[
|
||||||
{type:'checkbox', fixed: 'left'},
|
{type:'checkbox', fixed: 'left'},
|
||||||
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
||||||
{field: 'reportId', width: 180, title: '主键ID', align:'center',
|
|
||||||
templet: function(row) {
|
|
||||||
var rowData = row[this.field];
|
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
||||||
return '-';
|
|
||||||
}
|
|
||||||
return rowData;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{field: 'dutyIndexLibId', width: 180, title: '指标ID', align:'center',
|
|
||||||
templet: function(row) {
|
|
||||||
var rowData = row[this.field];
|
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
||||||
return '-';
|
|
||||||
}
|
|
||||||
return rowData;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{field: 'checkPhotos', width: 180, title: '附加图片', align:'center',
|
|
||||||
templet: function(row) {
|
|
||||||
var rowData = row[this.field];
|
|
||||||
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
||||||
return '-';
|
|
||||||
}
|
|
||||||
return rowData;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{field: 'checkPlace', width: 180, title: '检查地点', align:'center',
|
{field: 'checkPlace', width: 180, title: '检查地点', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var rowData = row[this.field];
|
var rowData = row[this.field];
|
||||||
|
Loading…
Reference in New Issue
Block a user