|
|
@ -12,6 +12,7 @@ |
|
|
|
</div> |
|
|
|
<div class=""> |
|
|
|
<el-form ref="form_obj" :model="formobj" :rules="rules" class="formaddcopy02"> |
|
|
|
<div style="font-size: 16px;text-align: right">金额单位:元</div> |
|
|
|
<el-row style="border-top: 1px solid #e0e3eb"> |
|
|
|
<el-col :span="8"> |
|
|
|
<div class="span-sty">申请部门</div> |
|
|
@ -54,7 +55,10 @@ |
|
|
|
<el-form-item><span class="addinputInfo">{{ formobj.lawsuitSubject }}</span></el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<div class="title">已还与欠款情况</div> |
|
|
|
<div class="title titleOne"> |
|
|
|
<div>已还与欠款情况</div> |
|
|
|
<el-button size="mini" type="primary" class="btntopblueline" @click="lookFinancial">金融方案</el-button> |
|
|
|
</div> |
|
|
|
<el-table :key="tableKey" :data="formobj.vehList" :index="index" border style="width: 100%"> |
|
|
|
<el-table-column fixed width="80" label="序号" type="index" :index="index + 1" align="center"/> |
|
|
|
<el-table-column prop="vinNo" label="车架号" align="center" width="120"/> |
|
|
@ -92,6 +96,8 @@ |
|
|
|
</el-form> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<!-- 查看金融方案 --> |
|
|
|
<financialschemeInfo v-show="viewState == 3" ref="divFinancial" @doback="resetState" /> |
|
|
|
<!-- 选择待办人 的弹出框--> |
|
|
|
<el-dialog title="填写审批意见" :visible.sync="nodeDialogVisible" width="80%"> |
|
|
|
<el-form class="formadd" > |
|
|
@ -136,9 +142,13 @@ |
|
|
|
<script> |
|
|
|
import req from '@/api/caseaction/caseaction' |
|
|
|
import { selectStaffListss } from '@/api/Common/dictcommons' |
|
|
|
import financialschemeInfo from '../publicPage/financialschemeInfo' |
|
|
|
|
|
|
|
export default { |
|
|
|
name: 'CaseActionDaiBan', |
|
|
|
components: { |
|
|
|
financialschemeInfo |
|
|
|
}, |
|
|
|
data() { |
|
|
|
return { |
|
|
|
viewTitle: '', |
|
|
@ -255,6 +265,17 @@ export default { |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
lookFinancial() { |
|
|
|
req.selectDetailss({ businessSid: this.formobj.salesOrderSid }).then((res) => { |
|
|
|
if (res.success) { |
|
|
|
this.viewState = 3 |
|
|
|
this.$refs['divFinancial'].showInfo(res.data, '03') |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
resetState() { |
|
|
|
this.viewState = 1 |
|
|
|
}, |
|
|
|
// 加签 |
|
|
|
openCountersign(val) { |
|
|
|
this.operation = val |
|
|
@ -441,4 +462,11 @@ export default { |
|
|
|
.rowClass{ |
|
|
|
border-top: 1px solid #E0E3EB; |
|
|
|
} |
|
|
|
.titleOne { |
|
|
|
padding: 7px; |
|
|
|
display: flex; |
|
|
|
flex-direction: row; |
|
|
|
justify-content: space-between; |
|
|
|
align-items: center; |
|
|
|
} |
|
|
|
</style> |
|
|
|