|
@@ -15,12 +15,25 @@
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<div>
|
|
<div>
|
|
<div v-if="editMessage.field && editMessage.field.field == item.field && editMessage.data.proofGroupId == scope.row.proofGroupId">
|
|
<div v-if="editMessage.field && editMessage.field.field == item.field && editMessage.data.proofGroupId == scope.row.proofGroupId">
|
|
- <!-- <el-select clearable v-if="item.field == 'courtOpinions1' || item.field == 'courtOpinions2'" :value="getColumnData(scope.row,item)" @change="(value)=>changeMessage(item,scope.row,value)" placeholder="请选择">
|
|
|
|
- <el-option label="基于原权要维持有效" value="基于原权要维持有效"></el-option>
|
|
|
|
- <el-option label="基于修改后权要维持有效" value="基于修改后权要维持有效"></el-option>
|
|
|
|
- <el-option label="全部无效" value="全部无效"></el-option>
|
|
|
|
- </el-select> -->
|
|
|
|
- <my-RichText :ref="item.field + scope.row.proofGroupId" :autoFocus="true" :value="getColumnData(scope.row,item)" @blur="(value)=>changeMessage(item,scope.row,value)"></my-RichText>
|
|
|
|
|
|
+ <el-select clearable v-if="item.field == 'invalidReasonDTO.claimSort'" :value="getColumnData(scope.row,item,true)" @change="(value)=>changeMessage(item,scope.row,value)" placeholder="请选择">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in claims"
|
|
|
|
+ :key="item.sysOrder"
|
|
|
|
+ :label="`权要${Number(item.sysOrder)+1}`"
|
|
|
|
+ :value="Number(item.sysOrder)"
|
|
|
|
+ >
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ <el-select clearable v-else-if="item.field == 'invalidReasonDTO.statuteId'" :value="getColumnData(scope.row,item,true)" @change="(value)=>changeMessage(item,scope.row,value)" placeholder="请选择">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in provisionsList"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :value="Number(item.value)"
|
|
|
|
+ >
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ <my-RichText v-else :ref="item.field + scope.row.proofGroupId" :autoFocus="true" :value="getColumnData(scope.row,item)" @blur="(value)=>changeMessage(item,scope.row,value)"></my-RichText>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="text" v-else >
|
|
<div class="text" v-else >
|