master
20918 2 months ago
parent 0d956d1200
commit 8edb2e702a

Binary file not shown.

@ -32,12 +32,12 @@
</select> </select>
<select id="selectItemByCaseNo" parameterType="String" resultMap="ItemResult"> <select id="selectItemByCaseNo" parameterType="String" resultMap="ItemResult">
<include refid="selectItemVo1"/> <include refid="selectItemVo"/>
where case_no = #{caseno} where case_no = #{caseno}
</select> </select>
<select id="selectItemList" parameterType="Item" resultMap="ItemResult"> <select id="selectItemList" parameterType="Item" resultMap="ItemResult">
<include refid="selectItemVo1"/> <include refid="selectItemVo"/>
<where> <where>
<if test="itemNo != null and itemNo != ''"> <if test="itemNo != null and itemNo != ''">
AND item_no like '%'||#{itemNo}||'%' <!-- concat('%', #{noticeTitle}, '%') --> AND item_no like '%'||#{itemNo}||'%' <!-- concat('%', #{noticeTitle}, '%') -->

@ -66,7 +66,7 @@
createUrl: prefix + "/add/{id}", createUrl: prefix + "/add/{id}",
updateUrl: prefix + "/edit/{id}", updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove", removeUrl: prefix + "/remove",
exportUrl: prefix + "/export", exportUrl: prefix + `/export/${caseNo}`,
modalName: "案件管理", modalName: "案件管理",
columns: [{ columns: [{
checkbox: true checkbox: true
@ -74,7 +74,7 @@
{ {
field: 'id', field: 'id',
title: '主键', title: '主键',
visible: false isVisible: false
}, },
{ {
field: 'caseNo', field: 'caseNo',

Loading…
Cancel
Save