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

修改

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