Commit 7ba4bbc5 authored by 张伯涛's avatar 张伯涛

修改

parent 06ab71b9
......@@ -1642,7 +1642,7 @@
</div>
<div />
<div class="step-content">
<el-table border :data="form.DBXX">
<el-table class="DBXXClass" border :data="form.DBXX">
<el-table-column
label="序号"
type="index"
......@@ -1651,15 +1651,24 @@
/>
<el-table-column label="担保类别">
<template slot-scope="scope">
<el-select v-model="scope.row.GUARANTYCLASSIFY" :disabled="formType === 'examine'" placeholder="请选择">
<el-option
v-for="item in DM_DBLB"
:key="item.id"
:label="item.value"
:value="item.id"
/>
</el-select>
</template>
<el-form-item
:ref="'DBXX.'+scope.$index+'.GUARANTYCLASSIFY'"
label-width="5px"
:prop="'DBXX.'+scope.$index+'.GUARANTYCLASSIFY'"
:rules="[
{ required: true, message: '请选择是否有授权人', trigger: 'blur' }
]"
>
<el-select v-model="scope.row.GUARANTYCLASSIFY" :disabled="formType === 'examine'" placeholder="请选择">
<el-option
v-for="item in DM_DBLB"
:key="item.id"
:label="item.value"
:value="item.id"
/>
</el-select>
</el-form-item></template>
</el-table-column>
<el-table-column label="担保形式">
<template slot-scope="scope">
......@@ -3088,6 +3097,11 @@ export default {
<style lang="scss">
.contractDetail {
height: calc(92.4vh - 95px);
.DBXXClass{
.cell{
height: 52px!important;
}
}
.InComeClass{
//BIG和SMALL的区别是字体加粗不加粗
//HEIGHT是高度
......
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