|
|
|
|
@ -141,6 +141,30 @@
|
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="6"> |
|
|
|
|
<el-form-item label="涉嫌问题" prop="involveProblemIdList"> |
|
|
|
|
<el-select |
|
|
|
|
v-model="query.involveProblemIdList" |
|
|
|
|
multiple |
|
|
|
|
clearable |
|
|
|
|
collapse-tags |
|
|
|
|
style="width: 100%" |
|
|
|
|
placeholder="请选择涉嫌问题" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="item in dict.suspectProblem" |
|
|
|
|
:key="item.dictValue" |
|
|
|
|
:value="item.dictValue" |
|
|
|
|
:label="item.dictLabel" |
|
|
|
|
> |
|
|
|
|
<!-- 复选框展示(和你弹窗里一致) --> |
|
|
|
|
<el-checkbox :model-value="(query.involveProblemIdList || []).includes(item.dictValue)"> |
|
|
|
|
{{ item.dictLabel }} |
|
|
|
|
</el-checkbox> |
|
|
|
|
</el-option> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="6" |
|
|
|
|
v-if=" query.sourceTableList?.length === 1 && String(query.sourceTableList[0]) === '23'"> |
|
|
|
|
<el-form-item label="信件状态"> |
|
|
|
|
|