|
|
|
@ -101,15 +101,17 @@
|
|
|
|
|
@timeCheck="timesc" |
|
|
|
|
@selectCheck="selectsc" |
|
|
|
|
@selection="selectionChange" |
|
|
|
|
:isselectfun="ProhibitSelection" |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
|
|
|
<div class="ElBtnClass"> |
|
|
|
|
<!-- --> |
|
|
|
|
<div class="ElBtnClass" > |
|
|
|
|
<el-button text @click="ClassificationIndicatorView(slotProps.scope)" |
|
|
|
|
>查看</el-button |
|
|
|
|
> |
|
|
|
|
<el-button text @click="ClassificationDditing(slotProps.scope)">编辑</el-button> |
|
|
|
|
<el-button text type="primary" @click="CategoryDeletion(slotProps.scope)" |
|
|
|
|
<el-button v-if="slotProps.scope.row.isEdit == '1'" text @click="ClassificationDditing(slotProps.scope)">编辑</el-button> |
|
|
|
|
<el-button v-if="slotProps.scope.row.isEdit == '1'" text type="primary" @click="CategoryDeletion(slotProps.scope)" |
|
|
|
|
>删除</el-button |
|
|
|
|
> |
|
|
|
|
</div> |
|
|
|
@ -321,14 +323,24 @@
|
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-form-item label="异议描述"> |
|
|
|
|
<el-form-item label="整改结果回复"> |
|
|
|
|
<el-input |
|
|
|
|
v-model="lassificationformedit.objectionRemark" |
|
|
|
|
:rows="4" |
|
|
|
|
type="textarea" |
|
|
|
|
placeholder="请输入异议描述" |
|
|
|
|
placeholder="请输入整改结果回复内容" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-form-item label="申诉原因"> |
|
|
|
|
<el-input |
|
|
|
|
v-model="lassificationformedit.appealReason" |
|
|
|
|
:rows="4" |
|
|
|
|
type="textarea" |
|
|
|
|
placeholder="请输入申诉原因" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<div class="el_photo_max"> |
|
|
|
|
<el-form-item label="照片" class="el_fotnr"> |
|
|
|
|
<el-upload |
|
|
|
@ -783,7 +795,13 @@ const selectionChange = list => {
|
|
|
|
|
selectionList.value = list; |
|
|
|
|
console.log(selectionList.value, '已经选中的数据'); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
function ProhibitSelection(val,index){ |
|
|
|
|
if(val.isEdit=='0'){ |
|
|
|
|
return false |
|
|
|
|
}else{ |
|
|
|
|
return true |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
const searchHide = () => { |
|
|
|
|
search.value = !search.value; |
|
|
|
|
|
|
|
|
@ -918,6 +936,7 @@ const ClassificationDditing = async val => {
|
|
|
|
|
fileList.value = []; |
|
|
|
|
$_findIndicatorsDetail({ id: val.row.id }) |
|
|
|
|
.then(res => { |
|
|
|
|
lassificationformedit.value.appealReason = val.row.appealReason; //申诉原因 |
|
|
|
|
console.log(res.data.data.pictures, '图片列表'); |
|
|
|
|
url.value = res.data.data.pictures[0].url; //赋值给弹窗图片 |
|
|
|
|
res.data.data.pictures.forEach(res => { |
|
|
|
@ -961,6 +980,7 @@ const ClassificationDditing = async val => {
|
|
|
|
|
lassificationformedit.value.objectionRemark = val.row.objectionRemark; //异议描述 |
|
|
|
|
lassificationformedit.value.textarea = val.row.remark; //分数备注 |
|
|
|
|
lassificationformedit.value.assessUserName = val.row.assessUserName; //考核人名称 |
|
|
|
|
|
|
|
|
|
// 固定值 |
|
|
|
|
// lassificationformedit.value.IndicatorScore = IndicatorScore.value.find(res=>res.point == val.row.point).id, //指标分数 |
|
|
|
|
EditID.value = val.row.id; //编辑需要的ID |
|
|
|
@ -987,6 +1007,7 @@ const IndicatorEditingFn = () => {
|
|
|
|
|
classifyName: Indicatoritems.value.find( |
|
|
|
|
res => res.id == lassificationformedit.value.Indicatoritems |
|
|
|
|
).name, //指标项目名称 |
|
|
|
|
appealReason: lassificationformedit.value.appealReason, //申诉原因 |
|
|
|
|
}; |
|
|
|
|
console.log(data, '处理好的参数'); |
|
|
|
|
Indicatoreditingload.value = true; //开启加载 |
|
|
|
|