|
@@ -12,22 +12,22 @@
|
|
|
</template>
|
|
|
|
|
|
<el-form-item label="无效理由" prop="statutesContent">
|
|
|
- {{ form.statutesContent }}
|
|
|
+ <span v-html="form.statutesContent"></span>
|
|
|
</el-form-item>
|
|
|
<el-form-item :label="(ifSecondInvalid?'第二次':'第一次') + '证据组合'" prop="proofGroupDescription">
|
|
|
- <div v-if="['2','3','4','8'].indexOf(form.statutesId) !=-1">
|
|
|
+ <div v-if="true">
|
|
|
<div v-if="editProofGroupDescription" style="display:flex;align-items:center;">
|
|
|
<el-input type="textarea" style="width:100%" v-model="descriptions"></el-input>
|
|
|
<el-button type="primary" class="margin-left_10" icon="el-icon-check" circle style="font-size:15px" @click="submitContents()"></el-button>
|
|
|
<el-button type="primary" class="margin-left_10" icon="iconfont icon-fanhui" circle style="font-size:15px" @click="cancelContents()"></el-button>
|
|
|
</div>
|
|
|
<div v-else>
|
|
|
- {{ form.proofGroupDescription }}
|
|
|
+ <span v-html="form.proofGroupDescription"></span>
|
|
|
<span @click="editContents()" ><el-link type="primary"><i class="iconfont icon-bianji" style="font-size:28px"></i></el-link></span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div v-else>
|
|
|
- {{ form.proofGroupDescription }}
|
|
|
+ <span v-html="form.proofGroupDescription"></span>
|
|
|
</div>
|
|
|
|
|
|
|
|
@@ -57,7 +57,7 @@
|
|
|
<el-input type="textarea" :autosize="{maxRows:5}" v-model="scope.row.featureText" @blur="change(scope.row)"></el-input>
|
|
|
</div>
|
|
|
<div v-else>
|
|
|
- <span :class="getFeatureDel(scope.row)?'del':''">{{ scope.row.featureText }}</span>
|
|
|
+ <span :class="getFeatureDel(scope.row)?'del':''" v-html="scope.row.featureText"></span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div v-else>
|