提交代码
parent
f598a52789
commit
c968a009b3
|
@ -163,25 +163,26 @@
|
||||||
<if test="proId != null"> and projectId=#{proId}</if>
|
<if test="proId != null"> and projectId=#{proId}</if>
|
||||||
<if test="userId != null"> and lordSent=#{userId} and checkState in (0,3)</if>
|
<if test="userId != null"> and lordSent=#{userId} and checkState in (0,3)</if>
|
||||||
</where>
|
</where>
|
||||||
union all
|
UNION ALL
|
||||||
select '107' as category, id from smz_ssp_problemmodify
|
select '107' as category, id from smz_ssp_problemmodify
|
||||||
<where>
|
<where>
|
||||||
infoType=0
|
infoType=0
|
||||||
<if test="proId != null"> and projectId=#{proId}</if>
|
<if test="proId != null"> and projectId=#{proId}</if>
|
||||||
<if test="userId != null"> and lordSent=#{userId} and checkState in (0,3)</if>
|
<if test="userId != null"> and recheckSend=#{userId} and checkState=1</if>
|
||||||
</where>
|
</where>
|
||||||
|
UNION ALL
|
||||||
select '108' as category, id from smz_ssp_problemmodify
|
select '108' as category, id from smz_ssp_problemmodify
|
||||||
<where>
|
<where>
|
||||||
infoType=1
|
infoType=1
|
||||||
<if test="proId != null"> and projectId=#{proId}</if>
|
<if test="proId != null"> and projectId=#{proId}</if>
|
||||||
<if test="userId != null"> and lordSent=#{userId} and checkState in (0,3)</if>
|
<if test="userId != null"> and lordSent=#{userId} and checkState in (0,3)</if>
|
||||||
</where>
|
</where>
|
||||||
union all
|
UNION ALL
|
||||||
select '109' as category, id from smz_ssp_problemmodify
|
select '109' as category, id from smz_ssp_problemmodify
|
||||||
<where>
|
<where>
|
||||||
infoType=1
|
infoType=1
|
||||||
<if test="proId != null"> and projectId=#{proId}</if>
|
<if test="proId != null"> and projectId=#{proId}</if>
|
||||||
<if test="userId != null"> and lordSent=#{userId} and checkState in (0,3)</if>
|
<if test="userId != null"> and recheckSend=#{userId} and checkState=1</if>
|
||||||
</where>
|
</where>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|
|
@ -104,7 +104,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
left join wx_menu_config_role smcr on smcr.smcid = smc.id
|
left join wx_menu_config_role smcr on smcr.smcid = smc.id
|
||||||
left join sys_user_role ur on ur.role_id = smcr.role_id
|
left join sys_user_role ur on ur.role_id = smcr.role_id
|
||||||
where smc.del_flag = 0
|
where smc.del_flag = 0
|
||||||
and (ur.user_id = #{currentUserId} or smcr.user_id = #{currentUserId})
|
and (ur.user_id = #{currentUserId} or smcr.user_id = #{currentUserId} or smcr.role_id is null)
|
||||||
<if test="activeProjectId != null"> and smc.project_id = #{activeProjectId}</if>
|
<if test="activeProjectId != null"> and smc.project_id = #{activeProjectId}</if>
|
||||||
<if test="menuType != null and menuType != ''"> and smc.menu_type = #{menuType}</if>
|
<if test="menuType != null and menuType != ''"> and smc.menu_type = #{menuType}</if>
|
||||||
order by smc.menu_sort asc
|
order by smc.menu_sort asc
|
||||||
|
|
|
@ -122,7 +122,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test='activeTags == "ywc"'> and ssp.checkState = 4 </if>
|
<if test='activeTags == "ywc"'> and ssp.checkState = 4 </if>
|
||||||
and ssp.isDel = 0
|
and ssp.isDel = 0
|
||||||
</where>
|
</where>
|
||||||
order by sort, ssp.id desc
|
order by <if test="createBy != null and createBy != ''">sort,</if> ssp.id desc
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="selectSmzSspProblemmodifyById" parameterType="Long" resultMap="SmzSspProblemmodifyResult">
|
<select id="selectSmzSspProblemmodifyById" parameterType="Long" resultMap="SmzSspProblemmodifyResult">
|
||||||
|
|
|
@ -1898,7 +1898,7 @@ swiper-item video {
|
||||||
}
|
}
|
||||||
|
|
||||||
.code_label {
|
.code_label {
|
||||||
font-size: 0.9rem;
|
font-size: 0.8rem;
|
||||||
width: 120rpx;
|
width: 120rpx;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
Loading…
Reference in New Issue