update code
parent
5457761b77
commit
03f27873fe
|
@ -86,7 +86,7 @@ export default {
|
|||
},
|
||||
methods: {
|
||||
goBigScreen(){
|
||||
window.open("/jhbs/")
|
||||
window.open("//szgc.jhncidg.com:808/jhbs/")
|
||||
},
|
||||
toggleSideBar() {
|
||||
this.$store.dispatch('app/toggleSideBar')
|
||||
|
|
|
@ -58,6 +58,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
and ssp.isDel=0
|
||||
<if test="projectId != null "> and ssp.projectId = #{projectId}</if>
|
||||
<if test="infoType != null "> and ssp.infoType = #{infoType}</if>
|
||||
<if test="roleType != null and roleType >0 "> and ssp.roleType = #{roleType}</if>
|
||||
<if test="problemArea != null and problemArea != ''"> and ssp.problemArea like concat('%', #{problemArea}, '%')</if>
|
||||
<if test="workParts != null and workParts != ''"> and ssp.workParts like concat('%', #{workParts}, '%')</if>
|
||||
<if test="changeInfo != null and changeInfo != ''"> and ssp.changeInfo like concat('%', #{changeInfo}, '%')</if>
|
||||
|
@ -327,8 +328,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
</select>
|
||||
|
||||
<select id="groupByInfotypeCheckState" parameterType="SmzSspProblemmodifyWhere" resultMap="SmzSspProblemmodifyResult">
|
||||
SELECT infotype,checkState,COUNT(1) id FROM smz_ssp_problemmodify WHERE isDel=0
|
||||
SELECT infotype,checkState,COUNT(1) id FROM vw_smz_ssp_problemmodify_audit WHERE isDel=0
|
||||
<if test="infoType !=null">and infoType=#{infoType}</if>
|
||||
<if test="roleType !=null and roleType>0">and roleType=#{roleType}</if>
|
||||
<if test="projectId > 0"> and projectId=#{projectId}</if>
|
||||
<if test="projectId <= 0">
|
||||
AND projectId IN (
|
||||
|
@ -342,7 +344,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
select count(1) cnt
|
||||
FROM vw_smz_ssp_problemmodify_audit WHERE isDel=0
|
||||
<if test="infoType !=null">and infoType=#{infoType}</if>
|
||||
and ((updateTime is null and date(nickedTime) < date(now()) ) or date(updateTime )>date(nickedTime))
|
||||
<if test="roleType !=null and roleType>0">and roleType=#{roleType}</if>
|
||||
and ((updateTime is null and date(nickedTime) < date(now()) ) or date(updateTime )>date(nickedTime))
|
||||
<if test="projectId > 0"> and projectId=#{projectId}</if>
|
||||
<if test="projectId <= 0">
|
||||
AND projectId IN (
|
||||
|
|
Loading…
Reference in New Issue