Commit 5719bb9b authored by zhangjianqian's avatar zhangjianqian

隐患排查库,隐患排查任务bug

parent d8492b07
......@@ -24,8 +24,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectTHiddenLibraryList" parameterType="THiddenLibrary" resultMap="THiddenLibraryResult">
<include refid="selectTHiddenLibraryVo"/>
<where>
<if test="deptId != null "> and dept_id = #{deptId}</if>
<if test="riskPoint != null and riskPoint != ''"> and risk_point like concat('%', #{riskPoint}, '%')</if>
<if test="deptId != null "> and h.dept_id = #{deptId}</if>
<if test="riskPoint != null and riskPoint != ''"> and h.risk_point like concat('%', #{riskPoint}, '%')</if>
</where>
</select>
......
......@@ -240,7 +240,7 @@
<el-form-item label="任务范围" prop="workRange">
<el-input v-model="form.workRange" placeholder="请输入任务范围" />
</el-form-item>
<el-form-item label="排查库" >
<el-form-item label="排查库" prop="libraryId">
<!--<el-input v-model="form.deptId" placeholder="请输入部门id" />-->
<el-select v-model="form.libraryId" multiple filterable placeholder="请选择" @change="selectLibrary">
<el-option
......@@ -609,6 +609,9 @@ export default {
staffId: [
{ required: true, message: "责任人不能为空", trigger: "blur" }
],
libraryId: [
{required: true, message: "排查库不可为空", trigger: "change"}
],
// content: [
// { required: true, message: "排查内容不能为空", trigger: "blur" }
// ],
......@@ -700,6 +703,7 @@ export default {
workId: null,
parentId: null,
bookId: null,
libraryId: null,
workCycle: null,
workName: null,
workType: null,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment