parent
e4b0565d93
commit
e4c87b07dd
|
@ -527,23 +527,23 @@
|
|||
<if test="request.filters == null || request.filters.size() == 0 ">
|
||||
and (t1.status is null or t1.status != 'Trash')
|
||||
</if>
|
||||
<if test="request.toBeUpdated !=null and request.toBeUpdated == true and request.statusList.size() > 0">
|
||||
<if test="request.toBeUpdated !=null and request.toBeUpdated == true and request.statusList !=null and request.statusList.size() > 0">
|
||||
and ( t1.to_be_updated = #{request.toBeUpdated} or t1.status
|
||||
in <foreach collection="request.statusList" item="value" separator="," open="(" close=")">
|
||||
#{value}
|
||||
</foreach>)
|
||||
</if>
|
||||
<if test="request.toBeUpdated !=null and request.toBeUpdated == true and request.statusList.size() == 0">
|
||||
<if test="request.toBeUpdated !=null and request.toBeUpdated == true and (request.statusList ==null or request.statusList.size() == 0)">
|
||||
and t1.to_be_updated = #{request.toBeUpdated}
|
||||
</if>
|
||||
<if test="request.toBeUpdated !=null and request.toBeUpdated == true and request.toBeUpdateTime !=null and request.statusList.size() > 0">
|
||||
<if test="request.toBeUpdated !=null and request.toBeUpdated == true and request.toBeUpdateTime !=null and request.statusList !=null and request.statusList.size() > 0">
|
||||
and (t1.to_be_update_time >= #{request.toBeUpdateTime} or ( t1.status in
|
||||
<foreach collection="request.statusList" item="value" separator="," open="(" close=")">
|
||||
#{value}
|
||||
</foreach>
|
||||
and t1.update_time>= #{request.updateTime} ))
|
||||
</if>
|
||||
<if test="request.toBeUpdated !=null and request.toBeUpdated == true and request.toBeUpdateTime !=null and request.statusList.size() == 0">
|
||||
<if test="request.toBeUpdated !=null and request.toBeUpdated == true and request.toBeUpdateTime !=null and (request.statusList ==null or request.statusList.size() == 0)">
|
||||
and t1.to_be_update_time >= #{request.toBeUpdateTime}
|
||||
</if>
|
||||
<include refid="queryVersionCondition">
|
||||
|
@ -1179,7 +1179,7 @@
|
|||
AND (create_time >= #{startTime})
|
||||
</if>
|
||||
<if test="endTime > 0">
|
||||
AND ( create_time <= #{endTime})
|
||||
AND ( create_time <= #{endTime})
|
||||
</if>
|
||||
<if test="apiFilterSearchList != null and apiFilterSearchList.size() > 0">
|
||||
AND
|
||||
|
|
|
@ -36,7 +36,7 @@ export default {
|
|||
placeholder: {
|
||||
type: String,
|
||||
},
|
||||
errorInfor: String,
|
||||
errorInfo: String,
|
||||
addTagOnKeys: {
|
||||
type: Array,
|
||||
default: () => [13, 188, 9]
|
||||
|
@ -119,8 +119,8 @@ export default {
|
|||
this.innerTags.push(tag)
|
||||
return true
|
||||
} else {
|
||||
if (tag !== "" && this.errorInfor) {
|
||||
this.$error(this.errorInfor);
|
||||
if (tag !== "" && this.errorInfo) {
|
||||
this.$error(this.errorInfo);
|
||||
}
|
||||
}
|
||||
return false
|
||||
|
|
Loading…
Reference in New Issue