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,6 +1651,14 @@ ...@@ -1651,6 +1651,14 @@
/> />
<el-table-column label="担保类别"> <el-table-column label="担保类别">
<template slot-scope="scope"> <template slot-scope="scope">
<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-select v-model="scope.row.GUARANTYCLASSIFY" :disabled="formType === 'examine'" placeholder="请选择">
<el-option <el-option
v-for="item in DM_DBLB" v-for="item in DM_DBLB"
...@@ -1658,8 +1666,9 @@ ...@@ -1658,8 +1666,9 @@
:label="item.value" :label="item.value"
:value="item.id" :value="item.id"
/> />
</el-select> </el-select>
</template> </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