Browse Source

完善车辆回购管理

master
yunuo970428 1 year ago
parent
commit
f160ebc9ea
  1. 129
      anrui-riskcenter-ui/src/api/buyback/buyback.js
  2. 53
      anrui-riskcenter-ui/src/router/index.js
  3. 504
      anrui-riskcenter-ui/src/views/buyback/buyback.vue
  4. 553
      anrui-riskcenter-ui/src/views/buyback/buybackAdd.vue
  5. 464
      anrui-riskcenter-ui/src/views/buyback/buybackInfo.vue
  6. 686
      anrui-riskcenter-ui/src/views/workFlow/huigouFlow/buybackDaiBan.vue
  7. 507
      anrui-riskcenter-ui/src/views/workFlow/huigouFlow/buybackEdit.vue
  8. 472
      anrui-riskcenter-ui/src/views/workFlow/huigouFlow/buybackYiBan.vue

129
anrui-riskcenter-ui/src/api/buyback/buyback.js

@ -0,0 +1,129 @@
import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/riskcenter/v1/loanrepurchaseapply/listPage',
method: 'post',
data: params,
headers: { 'Content-Type': 'application/json' }
})
},
getListPage: function(params) {
return request({
url: '/riskcenter/v1/LoanSettleApply/getListPage',
method: 'post',
data: params,
headers: { 'Content-Type': 'application/json' }
})
},
saveOrUpdate: function(data) {
return request({
url: '/riskcenter/v1/loanrepurchaseapply/repurchaseSave',
method: 'post',
data: data,
headers: { 'Content-Type': 'application/json' }
})
},
repurchaseInit: function(data) {
return request({
url: '/riskcenter/v1/loanrepurchaseapply/repurchaseInit',
method: 'post',
data: data,
headers: { 'Content-Type': 'application/json' }
})
},
fetchBySid: function(data) {
return request({
url: '/riskcenter/v1/loanrepurchaseapply/fetchDetailsBySid/' + data,
method: 'get'
})
},
deleteBySids: function(data) {
return request({
url: '/riskcenter/v1/loanrepurchaseapply/deleteBySids',
method: 'DELETE',
data: data,
headers: { 'Content-Type': 'application/json' }
})
},
// 销售订单 -- 金融方案初始化
selectDetailss: function(data) {
return request({
url: '/riskcenter/v1/loansolutions/selectDetailss',
method: 'get',
params: data
})
},
// 提交流程
submit: function(params) {
return request({
url: '/riskcenter/v1/loanrepurchaseapply/submit',
method: 'post',
data: params,
headers: { 'Content-Type': 'application/json' }
})
},
// 流程审批(同意)
complete: function(params) {
return request({
url: '/riskcenter/v1/loanrepurchaseapply/complete',
method: 'post',
data: params,
headers: { 'Content-Type': 'application/json' }
})
},
// 流程审批(加签)
delegate: function(params) {
return request({
url: '/riskcenter/v1/loanrepurchaseapply/delegate',
method: 'post',
data: params,
headers: { 'Content-Type': 'application/json' }
})
},
// 流程审批(驳回)
reject: function(params) {
return request({
url: '/riskcenter/v1/loanrepurchaseapply/reject',
method: 'post',
data: params,
headers: { 'Content-Type': 'application/json' }
})
},
// 流程审批(终止)
breakProcess: function(params) {
return request({
url: '/riskcenter/v1/loanrepurchaseapply/breakProcess',
method: 'post',
data: params,
headers: { 'Content-Type': 'application/json' }
})
},
// 流程审批(撤回)
revokeProcess: function(params) {
return request({
url: '/riskcenter/v1/loanrepurchaseapply/revokeProcess',
method: 'post',
data: params,
headers: { 'Content-Type': 'application/json' }
})
},
// 审批流程(同意)获取下一环节
getNextNodesForSubmit: function(data) {
return request({
url: '/riskcenter/v1/loanrepurchaseapply/getNextNodesForSubmit',
method: 'get',
params: data
})
},
// 审批流程(驳回)获取上一环节
getPreviousNodesForReject: function(data) {
return request({
url: '/riskcenter/v1/loanrepurchaseapply/getPreviousNodesForReject',
method: 'get',
params: data
})
}
}

53
anrui-riskcenter-ui/src/router/index.js

@ -695,6 +695,22 @@ export const constantRoutes = [
}
]
},
{
path: '/settlethevehicleaccount',
component: Layout,
redirect: '/settlethevehicleaccount',
meta: {
title: '结清车辆台账'
},
children: [
{
path: '/settlethevehicleaccount/settlethevehicleaccount',
component: () => import('@/views/settlethevehicleaccount/settlethevehicleaccount.vue'),
name: 'SettleTheVehicleAccount',
meta: { title: '结清车辆台账', noCache: true }
}
]
},
{
path: '/offset',
component: Layout,
@ -711,6 +727,22 @@ export const constantRoutes = [
}
]
},
{
path: '/buyback',
component: Layout,
redirect: '/buyback',
meta: {
title: '车辆回购管理'
},
children: [
{
path: '/buyback/buyback',
component: () => import('@/views/buyback/buyback.vue'),
name: 'BuyBack',
meta: { title: '车辆回购管理', noCache: true }
}
]
},
// 流程审批
// 金融产品政策报备--编辑
@ -1198,6 +1230,27 @@ export const constantRoutes = [
component: () =>
import('@/views/workFlow/jieqingFlow/settleYiBan.vue'),
name: 'SettleYiBan'
},
// 车辆回购管理--编辑
{
path: '/huigouFlow/buybackEdit',
component: () =>
import('@/views/workFlow/huigouFlow/buybackEdit.vue'),
name: 'BuyBackEdit'
},
// 车辆回购管理--待办
{
path: '/huigouFlow/buybackDaiBan',
component: () =>
import('@/views/workFlow/huigouFlow/buybackDaiBan.vue'),
name: 'BuyBackDaiBan'
},
// 车辆回购管理--已办
{
path: '/huigouFlow/buybackYiBan',
component: () =>
import('@/views/workFlow/huigouFlow/buybackYiBan.vue'),
name: 'BuyBackYiBan'
},
// 404 page must be placed at the end !!!
// { path: '*', redirect: '/404', hidden: true }

504
anrui-riskcenter-ui/src/views/buyback/buyback.vue

@ -0,0 +1,504 @@
<template>
<div class="app-container">
<!--列表页面-->
<div v-show="viewState == 1">
<button-bar view-title="车辆回购管理" ref="btnbar" :btndisabled="btndisabled" @btnhandle="btnHandle"/>
<!--Start查询列表部分-->
<div class="main-content">
<div class="searchcon">
<el-button size="small" class="searchbtn" @click="clicksearchShow">{{ searchxianshitit }}</el-button>
<div v-show="isSearchShow" class="search">
<el-form ref="listQueryform" :inline="true" :model="listQuery" class="tab-header">
<el-form-item label="分公司">
<el-input v-model="listQuery.params.useOrgName" placeholder="" clearable/>
</el-form-item>
<el-form-item label="申请部门">
<el-input v-model="listQuery.params.createDept" placeholder="" clearable/>
</el-form-item>
<el-form-item label="申请人">
<el-input v-model="listQuery.params.createByName" placeholder="" clearable/>
</el-form-item>
<el-form-item label="申请日期">
<el-date-picker v-model="listQuery.params.applyStartDate" value-format="yyyy-MM-dd" format="yyyy-MM-dd" type="date" placeholder="选择日期"></el-date-picker>
<span style="padding: 0 8px"></span>
<el-date-picker v-model="listQuery.params.applyEndDate" value-format="yyyy-MM-dd" format="yyyy-MM-dd" type="date" placeholder="选择日期"></el-date-picker>
</el-form-item>
<el-form-item label="办结日期">
<el-date-picker v-model="listQuery.params.closeStartDate" value-format="yyyy-MM-dd" format="yyyy-MM-dd" type="date" placeholder="选择日期"></el-date-picker>
<span style="padding: 0 8px"></span>
<el-date-picker v-model="listQuery.params.closeEndDate" value-format="yyyy-MM-dd" format="yyyy-MM-dd" type="date" placeholder="选择日期"></el-date-picker>
</el-form-item>
<el-form-item label="贷款合同编号">
<el-input v-model="listQuery.params.loanContractNo" placeholder="" clearable/>
</el-form-item>
<el-form-item label="车架号">
<el-input v-model="listQuery.params.vinNo" placeholder="" clearable/>
</el-form-item>
<el-form-item label="车牌号">
<el-input v-model="listQuery.params.vehMark" placeholder="" clearable/>
</el-form-item>
<el-form-item label="资方">
<el-input v-model="listQuery.params.bankName" placeholder="" clearable/>
</el-form-item>
<el-form-item label="资方合同编号">
<el-input v-model="listQuery.params.bankContractNo" placeholder="" clearable/>
</el-form-item>
<el-form-item label="客户名称">
<el-input v-model="listQuery.params.customerName" placeholder="" clearable/>
</el-form-item>
<el-form-item label="贷款人">
<el-input v-model="listQuery.params.loanName" placeholder="" clearable/>
</el-form-item>
<el-form-item label="预计结清日期">
<el-date-picker v-model="listQuery.params.prepareStartDate" value-format="yyyy-MM-dd" format="yyyy-MM-dd" type="date" placeholder="选择日期"></el-date-picker>
<span style="padding: 0 8px"></span>
<el-date-picker v-model="listQuery.params.prepareEndDate" value-format="yyyy-MM-dd" format="yyyy-MM-dd" type="date" placeholder="选择日期"></el-date-picker>
</el-form-item>
</el-form>
<div class="btn" style="text-align: center;">
<el-button type="primary" icon="el-icon-search" size="small" @click="handleFilter">查询</el-button>
<el-button type="primary" icon="el-icon-refresh" size="small" @click="handleReset">重置</el-button>
</div>
</div>
</div>
<!--End查询列表部分-->
<div class="listtop">
<div class="tit">垫款结清申请列表</div>
<pageye v-show="list.length > 0" :total="listQuery.total" :page.sync="listQuery.current" :limit.sync="listQuery.size" class="pagination" @pagination="getList"/>
</div>
<!--Start 主页面主要部分 -->
<div class="">
<el-table :key="tableKey" v-loading="listLoading" :data="list" :border="true" style="width: 100%;" @selection-change="handleSelectionChange">
<el-table-column type="selection" align="center" width="50"/>
<el-table-column label="序号" type="index" width="80" :index="indexMethod" align="center"/>
<el-table-column label="操作" width="180px" align="center">
<template slot-scope="scope">
<el-button type="primary" size="mini" @click="toEdit(scope.row)" :disabled="scope.row.nodeState =='发起申请' ? false : scope.row.nodeState == '待提交' ? false : true">办理</el-button>
<el-button type="primary" size="mini" @click="toInfo(scope.row)">查看</el-button>
</template>
</el-table-column>
<el-table-column label="状态" width="150" header-align="center">
<template slot-scope="scope">
<span v-if="scope.row.nodeState=='待提交'" type="primary" size="mini">待提交</span>
<span v-else @click="flowRecord(scope.row)" class="bluezi">{{ scope.row.nodeState }}</span>
</template>
</el-table-column>
<el-table-column prop="useOrgName" label="分公司" align="center" width="130" />
<el-table-column prop="createDept" label="申请部门" align="center" width="130" />
<el-table-column prop="createByName" label="申请人" align="center" width="100" />
<el-table-column prop="applyDate" label="申请日期" align="center" width="100" />
<el-table-column prop="closeDate" label="办结日期" align="center" width="100" />
<el-table-column prop="loanContractNo" label="贷款合同编号" align="center" width="160" />
<el-table-column prop="vinNo" label="车架号" align="center" width="120" />
<el-table-column prop="vehMark" label="车牌号" align="center" width="120" />
<el-table-column prop="bankName" label="资方" align="center" width="100" />
<el-table-column prop="bankContractNo" label="资方合同编号" align="center" width="160" />
<el-table-column prop="customerName" label="客户名称" align="center" width="100" />
<el-table-column prop="loanName" label="贷款人" align="center" min-width="100" />
<el-table-column prop="prepareDate" label="预计结清日期" align="center" width="140" />
<el-table-column prop="amount" label="回购金额" align="center" width="120" />
</el-table>
</div>
<!--End 主页面主要部分-->
<div class="pages">
<div class="tit"/>
<!-- 翻页 -->
<pagination v-show="list.length > 0" :total="listQuery.total" :page.sync="listQuery.current" :limit.sync="listQuery.size" class="pagination" @pagination="getList"/>
</div>
<!--End查询列表部分-->
</div>
</div>
<!--新增及修改 -->
<buybackAdd v-show="viewState == 2 || viewState == 3" ref="divAdd" @doback="resetState" @reloadlist="getList"/>
<!--详情-->
<buybackInfo v-show="viewState == 4" ref="divInfo" @doback="resetState" />
<!--新增结清申请 -->
<settleAdd v-show="viewState == 5" ref="divSettle" @doback="resetState"/>
<!-- 流程审批记录 -->
<el-dialog title="" :visible.sync="centerDialogVisible" width="78%" height="1%" :before-close="closeIt" center>
<iframe frameborder="0" id="iframe" style="width:100%;" scrolling="no" :src="this.centerDialogVisible === true ? url :''"></iframe>
</el-dialog>
<!-- 选择车辆 -->
<el-dialog title="未结清车辆列表" :visible.sync="carVisible" width="80%">
<div>
<el-form ref="multipleTable" :inline="true" :model="carList" class="vinNoForm" label-width="100px">
<el-form-item label="客户名称">
<el-input v-model="carList.params.customer" clearable style="width: 150px;" placeholder=""/>
</el-form-item>
<el-form-item label="贷款人">
<el-input v-model="carList.params.borrowerName" clearable style="width: 150px;" placeholder=""/>
</el-form-item>
<el-form-item label="车牌号">
<el-input v-model="carList.params.vehMark" clearable style="width: 150px;" placeholder=""/>
</el-form-item>
<el-form-item>
<el-button type="primary" size="small" @click="selectCar">查询</el-button>
</el-form-item>
</el-form>
</div>
<el-table :key="carKey" v-loading="carLoading" :data="listByCar" border fit highlight-current-row style="width: 100%;">
<el-table-column :index="carindexMethod" align="center" label="序号" type="index" width="80"/>
<el-table-column label="操作" align="center" width="80">
<template slot-scope="scope">
<el-button type="primary" size="small" @click="chooseCar(scope.row)">选择</el-button>
</template>
</el-table-column>
<el-table-column prop="loanContractNo" label="贷款合同编号" align="center" width="160" />
<el-table-column prop="vinNo" label="车架号" align="center" />
<el-table-column prop="vehMark" label="车牌号" align="center" />
<el-table-column prop="bankName" label="资方" align="center" />
<el-table-column prop="bankContractNo" label="资方合同编号" align="center" width="160" />
<el-table-column prop="customer" label="客户" align="center" />
<el-table-column prop="borrowName" label="贷款人" align="center" />
</el-table>
<div class="pages">
<div class="tit"/>
<!-- 翻页 -->
<pagination v-show="carList.length > 0" :limit.sync="carList.size" :page.sync="carList.current" :total="carList.total" class="pagination" @pagination="getCarList"/>
</div>
</el-dialog>
</div>
</template>
<script>
import Pagination from '@/components/pagination'
import pageye from '@/components/pagination/pageye'
import ButtonBar from '@/components/ButtonBar'
import req from '@/api/buyback/buyback'
import { getStorage } from '@/utils/auth'
import buybackAdd from './buybackAdd'
import buybackInfo from './buybackInfo'
import settleAdd from '../settle/settleAdd'
export default {
name: 'BuyBack',
components: {
Pagination,
pageye,
ButtonBar,
buybackAdd,
buybackInfo,
settleAdd
},
data() {
return {
url: '',
dialogHeight: '80%',
centerDialogVisible: false,
btndisabled: false,
btnList: [
{
type: 'primary',
size: 'small',
icon: 'plus',
btnKey: 'toAdd',
btnLabel: '新增'
},
{
type: 'danger',
size: 'small',
icon: 'del',
btnKey: 'doDel',
btnLabel: '删除'
},
{
type: 'primary',
size: 'small',
icon: '',
btnKey: 'toSettle',
btnLabel: '结清申请'
},
{
type: 'info',
size: 'small',
icon: 'cross',
btnKey: 'doClose',
btnLabel: '关闭'
}
],
isSearchShow: false,
searchxianshitit: '显示查询条件',
viewState: 1, // 1 2 3 4
tableKey: 0,
list: [],
sids: [], // SIDs
multipleSelection: [],
FormLoading: false,
listLoading: false,
//
listQuery: {
current: 1,
size: 5,
total: 0,
params: {
createDept: '',
applyStartDate: '',
applyEndDate: '',
useOrgName: '',
createByName: '',
closeStartDate: '',
closeEndDate: '',
loanContractNo: '',
vinNo: '',
vehMark: '',
bankName: '',
bankContractNo: '',
customerName: '',
loanName: '',
prepareStartDate: '',
prepareEndDate: '',
orgPath: '',
menuUrl: '',
userSid: ''
}
},
carVisible: false,
carKey: 2,
carList: {
current: 1,
size: 5,
total: 0,
params: {
borrowerName: '',
customer: '',
orgPath: '',
vehMark: '',
type: '1'
}
},
listByCar: [],
carLoading: false
}
},
created() {
//
this.getList()
},
mounted() {
// vuewindowpostMessagehandleMessage
window.addEventListener('message', this.handleMessage)
this.$refs['btnbar'].setButtonList(this.btnList)
},
methods: {
async handleMessage(event) {
var code = ''
if (event.data.params !== null && event.data.params !== undefined) {
code = event.data.params.code
}
if (code === 1) {
this.centerDialogVisible = false
} else if (code === 2) {
this.dialogHeight = event.data.params.data
this.setIframeHeight(document.getElementById('iframe'))
}
},
closeIt() {
this.url = ''
this.centerDialogVisible = false
},
setIframeHeight(iframe) {
iframe.height = this.dialogHeight
},
flowRecord(row) {
this.centerDialogVisible = true
var params = {
deployId: row.procDefId,
procInsId: row.procInstId,
token: getStorage()
}
this.url = '/#/flow/flowRecordForBusiness?data=' + encodeURI((JSON.stringify(params)))
},
//
clicksearchShow() {
this.isSearchShow = !this.isSearchShow
if (this.isSearchShow) {
this.searchxianshitit = '隐藏查询条件'
} else {
this.searchxianshitit = '显示查询条件'
}
},
btnHandle(btnKey) {
console.log('XXXXXXXXXXXXXXX ' + btnKey)
switch (btnKey) {
case 'toAdd':
this.toAdd()
break
case 'doDel':
this.doDel()
break
case 'toSettle':
this.toSettle()
break
case 'doClose':
this.doClose()
break
default:
break
}
},
// sid
handleSelectionChange(row) {
const aa = []
this.multipleSelection = row
row.forEach(element => {
aa.push(element.sid)
})
this.sids = aa
},
//
indexMethod(index) {
var pagestart = (this.listQuery.current - 1) * this.listQuery.size
var pageindex = index + 1 + pagestart
return pageindex
},
//
getList() {
this.listLoading = true
this.listQuery.params.userSid = window.sessionStorage.getItem('userSid')
this.listQuery.params.orgPath = window.sessionStorage.getItem('defaultOrgPath')
this.listQuery.params.menuUrl = this.$route.path
req.listPage(this.listQuery).then(response => {
this.listLoading = false
if (response.success) {
this.list = response.data.records
this.listQuery.total = response.data.total
} else {
this.list = []
this.listQuery.total = 0
}
})
},
//
handleFilter() {
this.listQuery.current = 1
this.getList()
},
//
handleReset() {
this.listQuery = {
current: 1,
size: 5,
total: 0,
params: {
createDept: '',
applyStartDate: '',
applyEndDate: '',
useOrgName: '',
createByName: '',
closeStartDate: '',
closeEndDate: '',
loanContractNo: '',
vinNo: '',
vehMark: '',
bankName: '',
bankContractNo: '',
customerName: '',
loanName: '',
prepareStartDate: '',
prepareEndDate: '',
orgPath: '',
menuUrl: '',
userSid: ''
}
}
this.getList()
},
toAdd() {
this.carVisible = true
this.carList.params.vinNo = ''
this.carList.params.vehMark = ''
this.getCarList()
},
toEdit(row) {
this.viewState = 3
this.$refs['divAdd'].showEdit(row)
},
toInfo(row) {
this.viewState = 4
this.$refs['divInfo'].showInfo(row)
},
toSettle() {
if (this.sids.length === 1) {
if (this.multipleSelection[0].nodeState === '已办结') {
this.viewState = 5
this.$refs['divSettle'].showInit(this.sids[0])
} else {
this.$message({ showClose: true, type: 'error', message: '请选择状态为已办结的记录进行操作' })
}
} else {
this.$message({ showClose: true, type: 'error', message: '请选择一条记录进行操作' })
}
},
//
doDel() {
if (this.sids.length === 0) {
this.$message({ showClose: true, type: 'error', message: '请选择至少一条记录进行删除操作' })
return
}
const tip = '请确认是否删除所选 ' + this.sids.length + ' 条记录?'
this.$confirm(tip, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
const loading = this.$loading({
lock: true,
text: 'Loading',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
})
req.deleteBySids(this.sids).then(resp => {
if (resp.success) {
this.$message({ type: 'success', message: resp.msg, showClose: true })
}
this.getList()
loading.close()
}).catch(e => {
loading.close()
})
}).catch(() => {
})
},
//
carindexMethod(index) {
var pagestart = (this.carList.current - 1) * this.carList.size
var pageindex = index + 1 + pagestart
return pageindex
},
getCarList() {
this.carLoading = true
this.carList.params.orgPath = window.sessionStorage.getItem('defaultOrgPath')
req.getListPage(this.carList).then(response => {
this.carLoading = false
if (response.success) {
this.listByCar = response.data.records
this.carList.total = response.data.total
} else {
this.listByCar = []
this.carList.total = 0
}
})
},
selectCar() {
this.carList.current = 1
this.getCarList()
},
chooseCar(row) {
this.carVisible = false
this.viewState = 2
this.$refs['divAdd'].showAdd(row)
},
//
resetState() {
this.viewState = 1
},
doClose() {
this.$store.dispatch('tagsView/delView', this.$route)
this.$router.go(-1)
}
}
}
</script>
<style scoped>
</style>

553
anrui-riskcenter-ui/src/views/buyback/buybackAdd.vue

@ -0,0 +1,553 @@
<template>
<div class="app-container">
<div v-show="viewState == 1">
<div class="tab-header webtop">
<div>{{ viewTitle }}</div>
<div>
<el-button type="primary" size="small" :disabled="submitdisabled" @click="saveOrUpdate()">保存</el-button>
<el-button type="primary" size="small" :disabled="submitdisabled" @click="submit()">提交</el-button>
<el-button type="info" size="small" @click="handleReturn()">关闭</el-button>
</div>
</div>
<div class="listconadd">
<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>
<el-form-item><span class="addinputInfo">{{ formobj.createDept }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">申请人</div>
<el-form-item><span class="addinputInfo">{{ formobj.createByName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">申请日期</div>
<el-form-item><span class="addinputInfo">{{ formobj.applyDate }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">车架号</div>
<el-form-item><span class="addinputInfo">{{ formobj.vinNo }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">车牌号</div>
<el-form-item><span class="addinputInfo">{{ formobj.vehMark }}</span></el-form-item>
</el-col>
<el-col :span="8">
<el-form-item>
<span style="margin-left: 10px;color: #20a0ff" @click="lookCSJL(formobj.csjlSid)">催收记录</span><span style="margin-left: 10px;color: #20a0ff" @click="lookJRFA(formobj.jrfaSid)">金融方案</span>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">客户名称</div>
<el-form-item><span class="addinputInfo">{{ formobj.customerName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">贷款人</div>
<el-form-item><span class="addinputInfo">{{ formobj.loanName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">贷款合同编号</div>
<el-form-item><span class="addinputInfo">{{ formobj.loanContractNo }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方合同编号</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankContractNo }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">预计结清日期</div>
<el-form-item><el-date-picker class="addinputInfo" @change="changeDate" v-model="formobj.prepareDate" value-format="yyyy-MM-dd" format="yyyy-MM-dd" type="date" placeholder="选择日期" /></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">公司当前逾期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.overdueMonthPrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">公司当期未到期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.currentNotDuePrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">公司未到期金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.notDuePrice }}</span></el-form-item>
</el-col>
</el-row>
<div class="title">资方结清费用</div>
<el-row>
<el-col :span="8">
<div class="span-sty">资方逾期月还</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" v-model="formobj.bankCostVo.price" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方当期未到期月还</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" v-model="formobj.bankCostVo.currentNotDuePrice" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方未到期金额</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" @input="notDuePriceInput" v-model="formobj.bankCostVo.notDuePrice" clearable placeholder=""/></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方逾期利息</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" @input="bankInterestInput" v-model="formobj.bankCostVo.bankInterest" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方名义价</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" @input="bankNominalPriceInput" v-model="formobj.bankCostVo.bankNominalPrice" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方合同违约金</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" @input="bankContractLiquidatedInput" v-model="formobj.bankCostVo.bankContractLiquidated" clearable placeholder=""/></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方其他应收</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" v-model="formobj.bankCostVo.bankOtherReceivable" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="16">
<div class="span-sty">其他应收说明</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" v-model="formobj.bankCostVo.otherReceivableRemarks" clearable placeholder=""/></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">资方结清金额</div>
<el-form-item><span class="addinputInfo">{{ calculateBankSettlePrice }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">附件</div>
<el-form-item>
<uploadImg ref="uploadImg" class="addinputInfo" v-model="formobj.bankCostVo.bankfiles" :limit="50" bucket="map" :upload-data="{ type: '0001' }"/>
</el-form-item>
</el-col>
</el-row>
<div class="title" style="display: flex;flex-direction: row;justify-content: space-between;align-items: center">
<div>公司结清费用</div>
<div>贷款保整金<span>{{ formobj.companyCostVo.loanDeposit }}</span></div>
</div>
<el-row>
<el-col :span="8">
<div class="span-sty">公司逾期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.overduePrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">垫资方逾期利息</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.putBankInterest }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资金占用费</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.funfCost }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方逾期利息</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" v-model="formobj.companyCostVo.bankOverInterest" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">公司当期未到期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.companyCurrentNotPrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方未到期金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.bankNotPrice }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">贷款保证金扣罚金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.deductionAmount }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">名义价</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" v-model="formobj.companyCostVo.companyNominalPrice" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">合同违约金</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" v-model="formobj.companyCostVo.contractLiquidated" clearable placeholder=""/></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">公司其他费用</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" v-model="formobj.companyCostVo.companyOtherPrice" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="16">
<div class="span-sty">其他费用说明</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" v-model="formobj.companyCostVo.otherCostRemarks" clearable placeholder=""/></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">公司正常结清合计</div>
<el-form-item><span class="addinputInfo">{{ calculateSettleAll }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">结清利润</div>
<el-form-item><span class="addinputInfo">{{ calculateProfit }}</span></el-form-item>
</el-col>
</el-row>
<div class="title">回购情况</div>
<el-row>
<el-col :span="8">
<div class="span-sty">回购金额</div>
<el-form-item><span class="addinputInfo">{{ calculateBankSettlePrice }}</span></el-form-item>
</el-col>
<el-col :span="16">
<div class="span-sty">回购原因</div>
<el-form-item><el-input class="addinputInfo addinputw" v-model="formobj.buybacksReason" clearable placeholder=""/></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方收款账户名称</div>
<el-form-item><el-input class="addinputInfo addinputw" v-model="formobj.bankReceivingAccount" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方收款账号</div>
<el-form-item><el-input class="addinputInfo addinputw" v-model="formobj.bankAccountNo" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">付款时需备注内容</div>
<el-form-item><el-input class="addinputInfo addinputw" v-model="formobj.payRemarks" clearable placeholder=""/></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">附件</div>
<el-form-item>
<uploadImg ref="uploadImg" class="addinputInfo" v-model="formobj.buyfiles" :limit="50" bucket="map" :upload-data="{ type: '0001' }"/>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
</div>
<!-- 查看催收记录 -->
<vehiclecollectionrecords v-show="viewState == 2" ref="divCollection" @doback="resetState"/>
<!-- 查看金融方案 -->
<financialschemeInfo v-show="viewState == 3" ref="divFinancial" @doback="resetState"/>
</div>
</template>
<script>
import req from '@/api/buyback/buyback'
import uploadImg from '@/components/uploadFile/uploadImg'
import vehiclecollectionrecords from '../overduevehicle/vehiclecollectionrecords'
import financialschemeInfo from '@/components/publicPage/financialschemeInfo'
export default {
name: 'BuyBackAdd',
components: {
uploadImg,
vehiclecollectionrecords,
financialschemeInfo
},
computed: {
// --
calculateBankSettlePrice() {
return parseFloat(this.formobj.bankCostVo.price === '' ? 0 : this.formobj.bankCostVo.price) + parseFloat(this.formobj.bankCostVo.currentNotDuePrice === '' ? 0 : this.formobj.bankCostVo.currentNotDuePrice) + parseFloat(this.formobj.bankCostVo.notDuePrice === '' ? 0 : this.formobj.bankCostVo.notDuePrice) + parseFloat(this.formobj.bankCostVo.bankInterest === '' ? 0 : this.formobj.bankCostVo.bankInterest) + parseFloat(this.formobj.bankCostVo.bankNominalPrice === '' ? 0 : this.formobj.bankCostVo.bankNominalPrice) + parseFloat(this.formobj.bankCostVo.bankContractLiquidated === '' ? 0 : this.formobj.bankCostVo.bankContractLiquidated) + parseFloat(this.formobj.bankCostVo.bankOtherReceivable === '' ? 0 : this.formobj.bankCostVo.bankOtherReceivable) || 0
},
// --
calculateSettleAll() {
return parseFloat(this.formobj.companyCostVo.overduePrice === '' ? 0 : this.formobj.companyCostVo.overduePrice) + parseFloat(this.formobj.companyCostVo.funfCost === '' ? 0 : this.formobj.companyCostVo.funfCost) + parseFloat(this.formobj.companyCostVo.bankOverInterest === '' ? 0 : this.formobj.companyCostVo.bankOverInterest) + parseFloat(this.formobj.companyCostVo.companyCurrentNotPrice === '' ? 0 : this.formobj.companyCostVo.companyCurrentNotPrice) + parseFloat(this.formobj.companyCostVo.bankNotPrice === '' ? 0 : this.formobj.companyCostVo.bankNotPrice) + parseFloat(this.formobj.companyCostVo.deductionAmount === '' ? 0 : this.formobj.companyCostVo.deductionAmount) + parseFloat(this.formobj.companyCostVo.contractLiquidated === '' ? 0 : this.formobj.companyCostVo.contractLiquidated) + parseFloat(this.formobj.companyCostVo.companyOtherPrice === '' ? 0 : this.formobj.companyCostVo.companyOtherPrice) - parseFloat(this.formobj.companyCostVo.loanDeposit === '' ? 0 : this.formobj.companyCostVo.loanDeposit) || 0
},
//
calculateProfit() {
return (parseFloat(this.formobj.companyCostVo.bankOverInterest === '' ? 0 : this.formobj.companyCostVo.bankOverInterest) + parseFloat(this.formobj.companyCostVo.companyNominalPrice === '' ? 0 : this.formobj.companyCostVo.companyNominalPrice) + parseFloat(this.formobj.companyCostVo.contractLiquidated === '' ? 0 : this.formobj.companyCostVo.contractLiquidated) + parseFloat(this.formobj.companyCostVo.companyOtherPrice === '' ? 0 : this.formobj.companyCostVo.companyOtherPrice)) - (parseFloat(this.formobj.bankCostVo.bankInterest === '' ? 0 : this.formobj.bankCostVo.bankInterest) + parseFloat(this.formobj.bankCostVo.bankNominalPrice === '' ? 0 : this.formobj.bankCostVo.bankNominalPrice) + parseFloat(this.formobj.bankCostVo.bankContractLiquidated === '' ? 0 : this.formobj.bankCostVo.bankContractLiquidated) + parseFloat(this.formobj.bankCostVo.bankOtherReceivable === '' ? 0 : this.formobj.bankCostVo.bankOtherReceivable)) || 0
}
},
data() {
return {
viewTitle: '',
viewState: 1,
submitdisabled: false,
formobj: {
amount: '',
applyDate: '',
bankAccountNo: '',
bankContractNo: '',
bankCostVo: {
bankContractLiquidated: '',
bankInterest: '',
bankNominalPrice: '',
bankOtherReceivable: '',
bankSettlePrice: '',
bankfiles: [],
currentNotDuePrice: '',
notDuePrice: '',
otherReceivableRemarks: '',
price: ''
},
bankName: '',
bankReceivingAccount: '',
busVinSid: '',
buybacksReason: '',
buyfiles: [],
companyCostVo: {
bankNotPrice: '',
bankOverInterest: '',
companyCurrentNotPrice: '',
companyNominalPrice: '',
companyOtherPrice: '',
contractLiquidated: '',
deductionAmount: '',
funfCost: '',
loanDeposit: '',
otherCostRemarks: '',
overduePrice: '',
profit: '',
putBankInterest: '',
settleAll: ''
},
createByName: '',
createDept: '',
createDeptSid: '',
currentNotDuePrice: '',
customerName: '',
customerSid: '',
instanceId: '',
loanContractNo: '',
loanName: '',
loanSid: '',
notDuePrice: '',
orgPath: '',
overdueMonthPrice: '',
payRemarks: '',
prepareDate: '',
salesOrderSid: '',
sid: '',
taskId: '',
userSid: '',
vehMark: '',
vinNo: ''
},
rules: {}
}
},
methods: {
UpNumber(e) {
e.target.value = e.target.value.replace(/[^0-9.]/g, '') // .
e.target.value = e.target.value.replace(/^00/, '0.') // 0
e.target.value = e.target.value.replace(/\.{2,}/g, '.') // .
e.target.value = e.target.value.replace('.', '$#$').replace(/\./g, '').replace('$#$', '.')
e.target.value = e.target.value.replace(/^(\-)*(\d+)\.(\d\d).*$/, '$1$2.$3') //
if (e.target.value.indexOf('.') < 0 && e.target.value !== '' && e.target.value !== '-') {
// 0102
e.target.value = parseFloat(e.target.value)
}
},
showAdd(row) {
this.viewTitle = '【新增】回购申请'
this.$nextTick(() => {
this.$refs['form_obj'].clearValidate()
})
req.repurchaseInit({ busVinSid: row.busVinSid, orgPath: window.sessionStorage.getItem('defaultOrgPath'), prepareDate: '', userSid: window.sessionStorage.getItem('userSid') }).then((res) => {
if (res.success) {
this.formobj = res.data
}
})
},
showEdit(row) {
this.viewTitle = '【编辑】回购申请'
this.$nextTick(() => {
this.$refs['form_obj'].clearValidate()
})
req.fetchBySid(row.sid).then((res) => {
if (res.success) {
this.formobj = res.data
}
})
},
//
lookCSJL(sid) {
if (sid !== '') {
this.viewState = 2
this.$refs['divCollection'].showInfo({ saleVehSid: this.formobj.busVinSid })
} else {
this.$message({ showClose: true, type: 'error', message: '暂无催收记录' })
}
},
lookJRFA(sid) {
if (sid !== '') {
req.selectDetailss({ businessSid: this.formobj.salesOrderSid }).then((res) => {
if (res.success) {
this.viewState = 3
this.$refs['divFinancial'].showInfo(res.data, '03')
}
})
} else {
this.$message({ showClose: true, type: 'error', message: '暂无金融方案' })
}
},
resetState() {
this.viewState = 1
},
//
changeDate(val) {
req.repurchaseInit({ busVinSid: this.formobj.busVinSid, orgPath: this.formobj.orgPath, prepareDate: val, userSid: this.formobj.userSid }).then((res) => {
if (res.success) {
this.formobj.overdueMonthPrice = res.data.overdueMonthPrice
this.formobj.currentNotDuePrice = res.data.currentNotDuePrice
this.formobj.notDuePrice = res.data.notDuePrice
this.formobj.companyCostVo.loanDeposit = res.data.companyCostVo.loanDeposit
this.formobj.companyCostVo.overduePrice = res.data.companyCostVo.overduePrice
this.formobj.companyCostVo.putBankInterest = res.data.companyCostVo.putBankInterest
this.formobj.companyCostVo.funfCost = res.data.companyCostVo.funfCost
this.formobj.companyCostVo.companyCurrentNotPrice = res.data.companyCostVo.companyCurrentNotPrice
this.formobj.companyCostVo.deductionAmount = res.data.companyCostVo.deductionAmount
}
})
},
notDuePriceInput(val) {
this.formobj.companyCostVo.bankNotPrice = val
},
bankInterestInput(val) {
this.formobj.companyCostVo.bankOverInterest = val
},
bankNominalPriceInput(val) {
this.formobj.companyCostVo.companyNominalPrice = val
},
bankContractLiquidatedInput(val) {
this.formobj.companyCostVo.contractLiquidated = val
},
saveOrUpdate() {
this.formobj.bankCostVo.bankSettlePrice = this.calculateBankSettlePrice
this.formobj.amount = this.calculateBankSettlePrice
this.formobj.companyCostVo.settleAll = this.calculateSettleAll
this.formobj.companyCostVo.profit = this.calculateProfit
this.$refs['form_obj'].validate((valid) => {
if (valid) {
this.submitdisabled = true
req.saveOrUpdate(this.formobj).then((res) => {
if (res.success) {
this.$message({ showClose: true, type: 'success', message: '保存成功' })
this.handleReturn('true')
} else {
this.submitdisabled = false
}
}).catch(() => {
this.submitdisabled = false
})
}
})
},
submit() {
this.formobj.bankCostVo.bankSettlePrice = this.calculateBankSettlePrice
this.formobj.amount = this.calculateBankSettlePrice
this.formobj.companyCostVo.settleAll = this.calculateSettleAll
this.formobj.companyCostVo.profit = this.calculateProfit
this.$refs['form_obj'].validate((valid) => {
if (valid) {
this.submitdisabled = true
req.submit(this.formobj).then((res) => {
if (res.success) {
this.$message({ showClose: true, type: 'success', message: '操作成功' })
this.handleReturn('true')
} else {
this.submitdisabled = false
}
}).catch(() => {
this.submitdisabled = false
})
}
})
},
handleReturn(isreload) {
if (isreload === 'true') this.$emit('reloadlist')
this.formobj = {
amount: '',
applyDate: '',
bankAccountNo: '',
bankContractNo: '',
bankCostVo: {
bankContractLiquidated: '',
bankInterest: '',
bankNominalPrice: '',
bankOtherReceivable: '',
bankSettlePrice: '',
bankfiles: [],
currentNotDuePrice: '',
notDuePrice: '',
otherReceivableRemarks: '',
price: ''
},
bankName: '',
bankReceivingAccount: '',
busVinSid: '',
buybacksReason: '',
buyfiles: [],
companyCostVo: {
bankNotPrice: '',
bankOverInterest: '',
companyCurrentNotPrice: '',
companyNominalPrice: '',
companyOtherPrice: '',
contractLiquidated: '',
deductionAmount: '',
funfCost: '',
loanDeposit: '',
otherCostRemarks: '',
overduePrice: '',
profit: '',
putBankInterest: '',
settleAll: ''
},
createByName: '',
createDept: '',
createDeptSid: '',
currentNotDuePrice: '',
customerName: '',
customerSid: '',
instanceId: '',
loanContractNo: '',
loanName: '',
loanSid: '',
notDuePrice: '',
orgPath: '',
overdueMonthPrice: '',
payRemarks: '',
prepareDate: '',
salesOrderSid: '',
sid: '',
taskId: '',
userSid: '',
vehMark: '',
vinNo: ''
}
this.submitdisabled = false
this.$emit('doback')
}
}
}
</script>
<style scoped>
.span-sty {
width: 160px !important;
}
.addinputInfo {
margin-left: 150px !important;
}
.formaddcopy02 .el-row .el-col /deep/ .el-form-item .addinputw {
margin-left: 150px !important;
width: calc(100% - 145px);
}
</style>

464
anrui-riskcenter-ui/src/views/buyback/buybackInfo.vue

@ -0,0 +1,464 @@
<template>
<div class="app-container">
<div v-show="viewState == 1">
<div class="tab-header webtop">
<div>{{ viewTitle }}</div>
<div>
<el-button type="info" size="small" @click="handleReturn()">关闭</el-button>
</div>
</div>
<div class="listconadd">
<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>
<el-form-item><span class="addinputInfo">{{ formobj.createDept }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">申请人</div>
<el-form-item><span class="addinputInfo">{{ formobj.createByName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">申请日期</div>
<el-form-item><span class="addinputInfo">{{ formobj.applyDate }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">车架号</div>
<el-form-item><span class="addinputInfo">{{ formobj.vinNo }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">车牌号</div>
<el-form-item><span class="addinputInfo">{{ formobj.vehMark }}</span></el-form-item>
</el-col>
<el-col :span="8">
<el-form-item>
<span style="margin-left: 10px;color: #20a0ff" @click="lookCSJL(formobj.csjlSid)">催收记录</span><span style="margin-left: 10px;color: #20a0ff" @click="lookJRFA(formobj.jrfaSid)">金融方案</span>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">客户名称</div>
<el-form-item><span class="addinputInfo">{{ formobj.customerName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">贷款人</div>
<el-form-item><span class="addinputInfo">{{ formobj.loanName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">贷款合同编号</div>
<el-form-item><span class="addinputInfo">{{ formobj.loanContractNo }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方合同编号</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankContractNo }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">预计结清日期</div>
<el-form-item><span class="addinputInfo">{{ formobj.prepareDate }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">公司当前逾期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.overdueMonthPrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">公司当期未到期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.currentNotDuePrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">公司未到期金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.notDuePrice }}</span></el-form-item>
</el-col>
</el-row>
<div class="title">资方结清费用</div>
<el-row>
<el-col :span="8">
<div class="span-sty">资方逾期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.price }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方当期未到期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.currentNotDuePrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方未到期金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.notDuePrice }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方逾期利息</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.bankInterest }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方名义价</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.bankNominalPrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方合同违约金</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.bankContractLiquidated }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方其他应收</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.bankOtherReceivable }}</span></el-form-item>
</el-col>
<el-col :span="16">
<div class="span-sty">其他应收说明</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.otherReceivableRemarks }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">资方结清金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.bankSettlePrice }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">附件</div>
<el-form-item>
<el-image class="addinputInfo" style="width: 150px;height: 150px" v-for="(item, index) in formobj.bankCostVo.bankfiles" :key="index" :src="item" :preview-src-list="formobj.bankCostVo.bankfiles" />
</el-form-item>
</el-col>
</el-row>
<div class="title" style="display: flex;flex-direction: row;justify-content: space-between;align-items: center">
<div>公司结清费用</div>
<div>贷款保整金<span>{{ formobj.companyCostVo.loanDeposit }}</span></div>
</div>
<el-row>
<el-col :span="8">
<div class="span-sty">公司逾期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.overduePrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">垫资方逾期利息</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.putBankInterest }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资金占用费</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.funfCost }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方逾期利息</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.bankOverInterest }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">公司当期未到期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.companyCurrentNotPrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方未到期金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.bankNotPrice }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">贷款保证金扣罚金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.deductionAmount }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">名义价</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.companyNominalPrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">合同违约金</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.contractLiquidated }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">公司其他费用</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.companyOtherPrice }}</span></el-form-item>
</el-col>
<el-col :span="16" class="tlineheightb">
<div class="span-sty">其他费用说明</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.otherCostRemarks }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">公司正常结清合计</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.settleAll }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">结清利润</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.profit }}</span></el-form-item>
</el-col>
</el-row>
<div class="title">回购情况</div>
<el-row>
<el-col :span="8">
<div class="span-sty">回购金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.amount }}</span></el-form-item>
</el-col>
<el-col :span="16" class="tlineheightb">
<div class="span-sty">回购原因</div>
<el-form-item><span class="addinputInfo">{{ formobj.buybacksReason }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8" class="tlineheightb">
<div class="span-sty">资方收款账户名称</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankReceivingAccount }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方收款账号</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankAccountNo }}</span></el-form-item>
</el-col>
<el-col :span="8" class="tlineheightb">
<div class="span-sty">付款时需备注内容</div>
<el-form-item><span class="addinputInfo">{{ formobj.payRemarks }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">附件</div>
<el-form-item>
<el-image class="addinputInfo" style="width: 150px;height: 150px" v-for="(item, index) in formobj.buyfiles" :key="index" :src="item" :preview-src-list="formobj.buyfiles" />
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
</div>
<!-- 查看催收记录 -->
<vehiclecollectionrecords v-show="viewState == 2" ref="divCollection" @doback="resetState"/>
<!-- 查看金融方案 -->
<financialschemeInfo v-show="viewState == 3" ref="divFinancial" @doback="resetState"/>
</div>
</template>
<script>
import req from '@/api/buyback/buyback'
import vehiclecollectionrecords from '../overduevehicle/vehiclecollectionrecords'
import financialschemeInfo from '@/components/publicPage/financialschemeInfo'
export default {
name: 'BuyBackInfo',
components: {
vehiclecollectionrecords,
financialschemeInfo
},
data() {
return {
viewTitle: '',
viewState: 1,
formobj: {
amount: '',
applyDate: '',
bankAccountNo: '',
bankContractNo: '',
bankCostVo: {
bankContractLiquidated: '',
bankInterest: '',
bankNominalPrice: '',
bankOtherReceivable: '',
bankSettlePrice: '',
bankfiles: [],
currentNotDuePrice: '',
notDuePrice: '',
otherReceivableRemarks: '',
price: ''
},
bankName: '',
bankReceivingAccount: '',
busVinSid: '',
buybacksReason: '',
buyfiles: [],
companyCostVo: {
bankNotPrice: '',
bankOverInterest: '',
companyCurrentNotPrice: '',
companyNominalPrice: '',
companyOtherPrice: '',
contractLiquidated: '',
deductionAmount: '',
funfCost: '',
loanDeposit: '',
otherCostRemarks: '',
overduePrice: '',
profit: '',
putBankInterest: '',
settleAll: ''
},
createByName: '',
createDept: '',
createDeptSid: '',
currentNotDuePrice: '',
customerName: '',
customerSid: '',
instanceId: '',
loanContractNo: '',
loanName: '',
loanSid: '',
notDuePrice: '',
orgPath: '',
overdueMonthPrice: '',
payRemarks: '',
prepareDate: '',
salesOrderSid: '',
sid: '',
taskId: '',
userSid: '',
vehMark: '',
vinNo: ''
},
rules: {}
}
},
methods: {
showInfo(row) {
this.viewTitle = '回购申请详情'
this.$nextTick(() => {
this.$refs['form_obj'].clearValidate()
})
req.fetchBySid(row.sid).then((res) => {
if (res.success) {
this.formobj = res.data
if (this.formobj.bankCostVo.bankfiles.length > 0) {
const aa = []
this.formobj.bankCostVo.bankfiles.forEach((e) => {
aa.push(e.url)
})
this.formobj.bankCostVo.bankfiles = aa
}
if (this.formobj.buyfiles.length > 0) {
const bb = []
this.formobj.buyfiles.forEach((e) => {
bb.push(e.url)
})
this.formobj.buyfiles = bb
}
}
})
},
//
lookCSJL(sid) {
if (sid !== '') {
this.viewState = 2
this.$refs['divCollection'].showInfo({ saleVehSid: this.formobj.busVinSid })
} else {
this.$message({ showClose: true, type: 'error', message: '暂无催收记录' })
}
},
lookJRFA(sid) {
if (sid !== '') {
req.selectDetailss({ businessSid: this.formobj.salesOrderSid }).then((res) => {
if (res.success) {
this.viewState = 3
this.$refs['divFinancial'].showInfo(res.data, '03')
}
})
} else {
this.$message({ showClose: true, type: 'error', message: '暂无金融方案' })
}
},
resetState() {
this.viewState = 1
},
handleReturn(isreload) {
if (isreload === 'true') this.$emit('reloadlist')
this.formobj = {
amount: '',
applyDate: '',
bankAccountNo: '',
bankContractNo: '',
bankCostVo: {
bankContractLiquidated: '',
bankInterest: '',
bankNominalPrice: '',
bankOtherReceivable: '',
bankSettlePrice: '',
bankfiles: [],
currentNotDuePrice: '',
notDuePrice: '',
otherReceivableRemarks: '',
price: ''
},
bankName: '',
bankReceivingAccount: '',
busVinSid: '',
buybacksReason: '',
buyfiles: [],
companyCostVo: {
bankNotPrice: '',
bankOverInterest: '',
companyCurrentNotPrice: '',
companyNominalPrice: '',
companyOtherPrice: '',
contractLiquidated: '',
deductionAmount: '',
funfCost: '',
loanDeposit: '',
otherCostRemarks: '',
overduePrice: '',
profit: '',
putBankInterest: '',
settleAll: ''
},
createByName: '',
createDept: '',
createDeptSid: '',
currentNotDuePrice: '',
customerName: '',
customerSid: '',
instanceId: '',
loanContractNo: '',
loanName: '',
loanSid: '',
notDuePrice: '',
orgPath: '',
overdueMonthPrice: '',
payRemarks: '',
prepareDate: '',
salesOrderSid: '',
sid: '',
taskId: '',
userSid: '',
vehMark: '',
vinNo: ''
}
this.$emit('doback')
}
}
}
</script>
<style scoped>
.span-sty {
width: 160px !important;
}
.addinputInfo {
margin-left: 150px !important;
}
.tlineheightb {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
}
/deep/ .tlineheightb .el-form-item .el-form-item__content .addinputInfo {
line-height: 15px !important;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
}
</style>

686
anrui-riskcenter-ui/src/views/workFlow/huigouFlow/buybackDaiBan.vue

@ -0,0 +1,686 @@
<template>
<div class="app-container">
<div v-show="viewState == 1">
<div class="tab-header webtop">
<div>{{ viewTitle }}</div>
<div>
<el-button type="primary" size="small" @click="openCountersign('加签')"> </el-button>
<el-button type="primary" size="small" @click="openAgree('同意')"> </el-button>
<el-button type="danger" size="small" @click="openReject('驳回')"> </el-button>
<el-button type="danger" size="small" @click="openStop('终止')"> </el-button>
</div>
</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>
<el-form-item><span class="addinputInfo">{{ formobj.createDept }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">申请人</div>
<el-form-item><span class="addinputInfo">{{ formobj.createByName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">申请日期</div>
<el-form-item><span class="addinputInfo">{{ formobj.applyDate }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">车架号</div>
<el-form-item><span class="addinputInfo">{{ formobj.vinNo }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">车牌号</div>
<el-form-item><span class="addinputInfo">{{ formobj.vehMark }}</span></el-form-item>
</el-col>
<el-col :span="8">
<el-form-item>
<span style="margin-left: 10px;color: #20a0ff" @click="lookCSJL(formobj.csjlSid)">催收记录</span><span style="margin-left: 10px;color: #20a0ff" @click="lookJRFA(formobj.jrfaSid)">金融方案</span>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">客户名称</div>
<el-form-item><span class="addinputInfo">{{ formobj.customerName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">贷款人</div>
<el-form-item><span class="addinputInfo">{{ formobj.loanName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">贷款合同编号</div>
<el-form-item><span class="addinputInfo">{{ formobj.loanContractNo }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方合同编号</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankContractNo }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">预计结清日期</div>
<el-form-item><span class="addinputInfo">{{ formobj.prepareDate }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">公司当前逾期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.overdueMonthPrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">公司当期未到期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.currentNotDuePrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">公司未到期金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.notDuePrice }}</span></el-form-item>
</el-col>
</el-row>
<div class="title">资方结清费用</div>
<el-row>
<el-col :span="8">
<div class="span-sty">资方逾期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.price }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方当期未到期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.currentNotDuePrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方未到期金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.notDuePrice }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方逾期利息</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.bankInterest }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方名义价</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.bankNominalPrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方合同违约金</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.bankContractLiquidated }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方其他应收</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.bankOtherReceivable }}</span></el-form-item>
</el-col>
<el-col :span="16">
<div class="span-sty">其他应收说明</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.otherReceivableRemarks }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">资方结清金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.bankSettlePrice }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">附件</div>
<el-form-item>
<el-image class="addinputInfo" style="width: 150px;height: 150px" v-for="(item, index) in formobj.bankCostVo.bankfiles" :key="index" :src="item" :preview-src-list="formobj.bankCostVo.bankfiles" />
</el-form-item>
</el-col>
</el-row>
<div class="title" style="display: flex;flex-direction: row;justify-content: space-between;align-items: center">
<div>公司结清费用</div>
<div>贷款保整金<span>{{ formobj.companyCostVo.loanDeposit }}</span></div>
</div>
<el-row>
<el-col :span="8">
<div class="span-sty">公司逾期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.overduePrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">垫资方逾期利息</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.putBankInterest }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资金占用费</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.funfCost }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方逾期利息</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.bankOverInterest }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">公司当期未到期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.companyCurrentNotPrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方未到期金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.bankNotPrice }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">贷款保证金扣罚金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.deductionAmount }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">名义价</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.companyNominalPrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">合同违约金</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.contractLiquidated }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">公司其他费用</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.companyOtherPrice }}</span></el-form-item>
</el-col>
<el-col :span="16" class="tlineheightb">
<div class="span-sty">其他费用说明</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.otherCostRemarks }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">公司正常结清合计</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.settleAll }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">结清利润</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.profit }}</span></el-form-item>
</el-col>
</el-row>
<div class="title">回购情况</div>
<el-row>
<el-col :span="8">
<div class="span-sty">回购金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.amount }}</span></el-form-item>
</el-col>
<el-col :span="16" class="tlineheightb">
<div class="span-sty">回购原因</div>
<el-form-item><span class="addinputInfo">{{ formobj.buybacksReason }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8" class="tlineheightb">
<div class="span-sty">资方收款账户名称</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankReceivingAccount }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方收款账号</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankAccountNo }}</span></el-form-item>
</el-col>
<el-col :span="8" class="tlineheightb">
<div class="span-sty">付款时需备注内容</div>
<el-form-item><span class="addinputInfo">{{ formobj.payRemarks }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">附件</div>
<el-form-item>
<el-image class="addinputInfo" style="width: 150px;height: 150px" v-for="(item, index) in formobj.buyfiles" :key="index" :src="item" :preview-src-list="formobj.buyfiles" />
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
</div>
<!-- 查看催收记录 -->
<vehiclecollectionrecords v-show="viewState == 2" ref="divCollection" @doback="resetState"/>
<!-- 查看金融方案 -->
<financialschemeInfo v-show="viewState == 3" ref="divFinancial" @doback="resetState"/>
<!-- 选择待办人 的弹出框-->
<el-dialog title="填写审批意见" :visible.sync="nodeDialogVisible" width="80%">
<el-form class="formadd" >
<el-row v-show="countersignLink" style="border-top: 1px solid #e0e3eb">
<el-col :span="4" class="tleftb">
<span class="icon">*</span>加签人员:
</el-col>
<el-col :span="20">
<el-form-item>
<el-select v-model="countersign.assignee" placeholder="请选择" filterable>
<el-option v-for="item in options" :key="item.userSid" :label="item.staffName" :value="item.userSid">
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-row v-show="currentLink" style="border-top: 1px solid #e0e3eb">
<el-col :span="4" class="tleftb">
<span>当前环节:</span>
</el-col>
<el-col :span="20">
<el-form-item><span>{{ current.taskName }}->{{ nextNode.name }}</span></el-form-item>
</el-col>
</el-row>
<el-row :class="{rowClass:!currentLink}">
<el-col :span="4" class="tleftb">
<span>意见:</span>
</el-col>
<el-col :span="20">
<el-form-item><el-input size="small" v-model="dialogList.comment" placeholder="审批意见" class="addinputw" type="textarea" :autosize="{ minRows: 1, maxRows: 10}" clearable ></el-input></el-form-item>
</el-col>
</el-row>
<div style="text-align:center;margin-top: 20px;">
<el-button type="primary" size="mini" @click="reject"> </el-button>
<el-button type="info " size="mini" @click="nodeDialogVisible = false"> </el-button>
</div>
</el-form>
</el-dialog>
</div>
</template>
<script>
import req from '@/api/buyback/buyback'
import { selectStaffListss } from '@/api/Common/dictcommons'
import vehiclecollectionrecords from '../cuishoucuoshiFlow/relation/vehiclecollectionrecords'
import financialschemeInfo from '../publicPage/financialschemeInfo'
export default {
name: 'BuyBackDaiBan',
components: {
vehiclecollectionrecords,
financialschemeInfo
},
data() {
return {
viewTitle: '',
viewState: 1,
formobj: {
amount: '',
applyDate: '',
bankAccountNo: '',
bankContractNo: '',
bankCostVo: {
bankContractLiquidated: '',
bankInterest: '',
bankNominalPrice: '',
bankOtherReceivable: '',
bankSettlePrice: '',
bankfiles: [],
currentNotDuePrice: '',
notDuePrice: '',
otherReceivableRemarks: '',
price: ''
},
bankName: '',
bankReceivingAccount: '',
busVinSid: '',
buybacksReason: '',
buyfiles: [],
companyCostVo: {
bankNotPrice: '',
bankOverInterest: '',
companyCurrentNotPrice: '',
companyNominalPrice: '',
companyOtherPrice: '',
contractLiquidated: '',
deductionAmount: '',
funfCost: '',
loanDeposit: '',
otherCostRemarks: '',
overduePrice: '',
profit: '',
putBankInterest: '',
settleAll: ''
},
createByName: '',
createDept: '',
createDeptSid: '',
currentNotDuePrice: '',
customerName: '',
customerSid: '',
instanceId: '',
loanContractNo: '',
loanName: '',
loanSid: '',
notDuePrice: '',
orgPath: '',
overdueMonthPrice: '',
payRemarks: '',
prepareDate: '',
salesOrderSid: '',
sid: '',
taskId: '',
userSid: '',
vehMark: '',
vinNo: ''
},
rules: {},
options: [],
operation: '', //
dialogList: {
comment: ''
},
startTask: true,
current: {
taskDefKey: '',
taskName: '' //
},
nextNode: {}, //
nodeDialogVisible: false,
currentLink: true,
countersignLink: false,
//
linkByParameter: {
businessSid: '',
comment: '',
instanceId: '',
taskId: '',
orgSidPath: '',
taskDefKey: '',
userSid: ''
},
//
countersign: {
taskId: '',
assignee: '',
userSid: '',
instanceId: '',
views: ''
}
}
},
created() {
console.log('url:' + window.location.href)
var one = window.location.href.indexOf('&data') + 6
const data = window.location.href.substr(one) // urlunescape()web,使
const obj = JSON.parse(decodeURIComponent(data))
console.log('iframe页面获取的obj:', obj)
//
this.linkByParameter.businessSid = obj.businessSid
this.linkByParameter.instanceId = obj.instanceId
this.linkByParameter.taskId = obj.taskId
this.linkByParameter.taskDefKey = obj.taskDefKey
// this.linkByParameter.orgSidPath = window.sessionStorage.getItem('orgSidPath')
this.linkByParameter.userSid = window.sessionStorage.getItem('userSid')
this.current.taskDefKey = obj.taskDefKey
this.current.taskName = obj.taskName
//
this.countersign.taskId = obj.taskId
this.countersign.userSid = window.sessionStorage.getItem('userSid')
this.countersign.instanceId = obj.instanceId
//
this.showInfo(obj.businessSid)
},
mounted() {
window.parent.postMessage({
cmd: 'returnHeight',
params: {
//
code: 2,
data: 500 + 'px'
}
}, '*')
},
methods: {
showInfo(sid) {
this.viewTitle = '回购申请详情'
this.$nextTick(() => {
this.$refs['form_obj'].clearValidate()
})
req.fetchBySid(sid).then((res) => {
if (res.success) {
this.formobj = res.data
if (this.formobj.bankCostVo.bankfiles.length > 0) {
const aa = []
this.formobj.bankCostVo.bankfiles.forEach((e) => {
aa.push(e.url)
})
this.formobj.bankCostVo.bankfiles = aa
}
if (this.formobj.buyfiles.length > 0) {
const bb = []
this.formobj.buyfiles.forEach((e) => {
bb.push(e.url)
})
this.formobj.buyfiles = bb
}
}
})
selectStaffListss().then((res) => {
if (res.success) {
this.options = res.data
}
})
},
//
lookCSJL(sid) {
if (sid !== '') {
this.viewState = 2
this.$refs['divCollection'].showInfo({ saleVehSid: this.formobj.busVinSid })
} else {
this.$message({ showClose: true, type: 'error', message: '暂无催收记录' })
}
},
lookJRFA(sid) {
if (sid !== '') {
req.selectDetailss({ businessSid: this.formobj.salesOrderSid }).then((res) => {
if (res.success) {
this.viewState = 3
this.$refs['divFinancial'].showInfo(res.data, '03')
}
})
} else {
this.$message({ showClose: true, type: 'error', message: '暂无金融方案' })
}
},
resetState() {
this.viewState = 1
},
//
openCountersign(val) {
this.operation = val
this.currentLink = true
this.countersignLink = true
this.dialogList.comment = ''
req.getNextNodesForSubmit({ taskDefKey: this.current.taskDefKey, businessSid: this.linkByParameter.businessSid }).then((resp) => {
if (resp.success) {
var arr = resp.data
this.nextNode = arr[0]
this.nodeDialogVisible = true
}
this.submitdisabled = false
})
},
//
openAgree(val) {
this.operation = val
this.currentLink = true
this.countersignLink = false
this.dialogList.comment = '同意'
req.getNextNodesForSubmit({ taskDefKey: this.current.taskDefKey, businessSid: this.linkByParameter.businessSid }).then((resp) => {
if (resp.success) {
var arr = resp.data
this.nextNode = arr[0]
this.nodeDialogVisible = true
}
this.submitdisabled = false
})
},
//
openReject(val) {
this.operation = val
this.currentLink = true
this.countersignLink = false
this.dialogList.comment = ''
req.getPreviousNodesForReject({ taskDefKey: this.current.taskDefKey, businessSid: this.linkByParameter.businessSid }).then((resp) => {
if (resp.success) {
var arr = resp.data
this.nextNode = arr[0]
this.nodeDialogVisible = true
}
this.submitdisabled = false
})
},
//
openStop(val) {
this.operation = val
this.currentLink = false
this.countersignLink = false
this.dialogList.comment = ''
this.nodeDialogVisible = true
},
reject() {
if (this.operation === '同意') {
this.handleAgree()
} else if (this.operation === '驳回') {
if (this.dialogList.comment === '') {
this.$message({ showClose: true, type: 'error', message: '请填写审批意见' })
} else {
this.handleReject()
}
} else if (this.operation === '终止') {
if (this.dialogList.comment === '') {
this.$message({ showClose: true, type: 'error', message: '请填写审批意见' })
} else {
this.handleStop()
}
} else if (this.operation === '加签') {
this.handleCountersign()
}
},
/** 加签 */
handleCountersign() {
if (this.countersign.assignee === '') {
this.$message({ showClose: true, type: 'error', message: '请选择加签人员' })
return
}
if (this.dialogList.comment === '') {
this.$message({ showClose: true, type: 'error', message: '请填写审批意见' })
return
}
this.countersign.views = this.dialogList.comment
req.delegate(this.countersign).then((response) => {
if (response.success) {
this.$notify({
title: '提示',
message: '执行成功',
type: 'success',
duration: 2000
})
this.nodeDialogVisible = false
//
window.parent.postMessage({
cmd: 'returnHeight',
params: {
//
code: 1
}
}, '*')
}
})
},
/** 同意任务 */
handleAgree() {
this.linkByParameter.comment = this.dialogList.comment
req.complete(this.linkByParameter).then((response) => {
if (response.success) {
this.$notify({
title: '提示',
message: '执行成功',
type: 'success',
duration: 2000
})
this.nodeDialogVisible = false
//
window.parent.postMessage({
cmd: 'returnHeight',
params: {
//
code: 1
}
}, '*')
}
})
},
/** 驳回任务 */
handleReject() {
this.linkByParameter.comment = this.dialogList.comment
req.reject(this.linkByParameter).then((response) => {
if (response.success) {
this.$notify({
title: '提示',
message: '执行成功',
type: 'success',
duration: 2000
})
this.nodeDialogVisible = false
//
window.parent.postMessage({
cmd: 'returnHeight',
params: {
//
code: 1
}
}, '*')
}
})
},
/** 终止任务 */
handleStop() {
this.linkByParameter.comment = this.dialogList.comment
req.breakProcess(this.linkByParameter).then((response) => {
if (response.success) {
this.$notify({
title: '提示',
message: '执行成功',
type: 'success',
duration: 2000
})
this.nodeDialogVisible = false
//
window.parent.postMessage({
cmd: 'returnHeight',
params: {
//
code: 1
}
}, '*')
}
})
}
}
}
</script>
<style scoped>
.span-sty {
width: 160px !important;
}
.addinputInfo {
margin-left: 150px !important;
}
.tlineheightb {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
}
/deep/ .tlineheightb .el-form-item .el-form-item__content .addinputInfo {
line-height: 15px !important;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
}
.rowClass{
border-top: 1px solid #E0E3EB;
}
</style>

507
anrui-riskcenter-ui/src/views/workFlow/huigouFlow/buybackEdit.vue

@ -0,0 +1,507 @@
<template>
<div class="app-container">
<div v-show="viewState == 1">
<div class="tab-header webtop">
<div>{{ viewTitle }}</div>
<div>
<el-button type="primary" size="small" :disabled="submitdisabled" @click="saveOrUpdate()">保存</el-button>
<el-button type="primary" size="small" :disabled="submitdisabled" @click="submit()">提交</el-button>
</div>
</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>
<el-form-item><span class="addinputInfo">{{ formobj.createDept }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">申请人</div>
<el-form-item><span class="addinputInfo">{{ formobj.createByName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">申请日期</div>
<el-form-item><span class="addinputInfo">{{ formobj.applyDate }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">车架号</div>
<el-form-item><span class="addinputInfo">{{ formobj.vinNo }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">车牌号</div>
<el-form-item><span class="addinputInfo">{{ formobj.vehMark }}</span></el-form-item>
</el-col>
<el-col :span="8">
<el-form-item>
<span style="margin-left: 10px;color: #20a0ff" @click="lookCSJL(formobj.csjlSid)">催收记录</span><span style="margin-left: 10px;color: #20a0ff" @click="lookJRFA(formobj.jrfaSid)">金融方案</span>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">客户名称</div>
<el-form-item><span class="addinputInfo">{{ formobj.customerName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">贷款人</div>
<el-form-item><span class="addinputInfo">{{ formobj.loanName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">贷款合同编号</div>
<el-form-item><span class="addinputInfo">{{ formobj.loanContractNo }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方合同编号</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankContractNo }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">预计结清日期</div>
<el-form-item><el-date-picker class="addinputInfo" @change="changeDate" v-model="formobj.prepareDate" value-format="yyyy-MM-dd" format="yyyy-MM-dd" type="date" placeholder="选择日期" /></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">公司当前逾期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.overdueMonthPrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">公司当期未到期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.currentNotDuePrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">公司未到期金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.notDuePrice }}</span></el-form-item>
</el-col>
</el-row>
<div class="title">资方结清费用</div>
<el-row>
<el-col :span="8">
<div class="span-sty">资方逾期月还</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" v-model="formobj.bankCostVo.price" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方当期未到期月还</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" v-model="formobj.bankCostVo.currentNotDuePrice" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方未到期金额</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" @input="notDuePriceInput" v-model="formobj.bankCostVo.notDuePrice" clearable placeholder=""/></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方逾期利息</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" @input="bankInterestInput" v-model="formobj.bankCostVo.bankInterest" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方名义价</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" @input="bankNominalPriceInput" v-model="formobj.bankCostVo.bankNominalPrice" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方合同违约金</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" @input="bankContractLiquidatedInput" v-model="formobj.bankCostVo.bankContractLiquidated" clearable placeholder=""/></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方其他应收</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" v-model="formobj.bankCostVo.bankOtherReceivable" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="16">
<div class="span-sty">其他应收说明</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" v-model="formobj.bankCostVo.otherReceivableRemarks" clearable placeholder=""/></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">资方结清金额</div>
<el-form-item><span class="addinputInfo">{{ calculateBankSettlePrice }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">附件</div>
<el-form-item>
<uploadImg ref="uploadImg" class="addinputInfo" v-model="formobj.bankCostVo.bankfiles" :limit="50" bucket="map" :upload-data="{ type: '0001' }"/>
</el-form-item>
</el-col>
</el-row>
<div class="title" style="display: flex;flex-direction: row;justify-content: space-between;align-items: center">
<div>公司结清费用</div>
<div>贷款保整金<span>{{ formobj.companyCostVo.loanDeposit }}</span></div>
</div>
<el-row>
<el-col :span="8">
<div class="span-sty">公司逾期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.overduePrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">垫资方逾期利息</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.putBankInterest }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资金占用费</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.funfCost }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方逾期利息</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" v-model="formobj.companyCostVo.bankOverInterest" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">公司当期未到期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.companyCurrentNotPrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方未到期金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.bankNotPrice }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">贷款保证金扣罚金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.deductionAmount }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">名义价</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" v-model="formobj.companyCostVo.companyNominalPrice" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">合同违约金</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" v-model="formobj.companyCostVo.contractLiquidated" clearable placeholder=""/></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">公司其他费用</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" v-model="formobj.companyCostVo.companyOtherPrice" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="16">
<div class="span-sty">其他费用说明</div>
<el-form-item><el-input class="addinputInfo addinputw" @keyup.native="UpNumber" v-model="formobj.companyCostVo.otherCostRemarks" clearable placeholder=""/></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">公司正常结清合计</div>
<el-form-item><span class="addinputInfo">{{ calculateSettleAll }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">结清利润</div>
<el-form-item><span class="addinputInfo">{{ calculateProfit }}</span></el-form-item>
</el-col>
</el-row>
<div class="title">回购情况</div>
<el-row>
<el-col :span="8">
<div class="span-sty">回购金额</div>
<el-form-item><span class="addinputInfo">{{ calculateBankSettlePrice }}</span></el-form-item>
</el-col>
<el-col :span="16">
<div class="span-sty">回购原因</div>
<el-form-item><el-input class="addinputInfo addinputw" v-model="formobj.buybacksReason" clearable placeholder=""/></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方收款账户名称</div>
<el-form-item><el-input class="addinputInfo addinputw" v-model="formobj.bankReceivingAccount" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方收款账号</div>
<el-form-item><el-input class="addinputInfo addinputw" v-model="formobj.bankAccountNo" clearable placeholder=""/></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">付款时需备注内容</div>
<el-form-item><el-input class="addinputInfo addinputw" v-model="formobj.payRemarks" clearable placeholder=""/></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">附件</div>
<el-form-item>
<uploadImg ref="uploadImg" class="addinputInfo" v-model="formobj.buyfiles" :limit="50" bucket="map" :upload-data="{ type: '0001' }"/>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
</div>
<!-- 查看催收记录 -->
<vehiclecollectionrecords v-show="viewState == 2" ref="divCollection" @doback="resetState"/>
<!-- 查看金融方案 -->
<financialschemeInfo v-show="viewState == 3" ref="divFinancial" @doback="resetState"/>
</div>
</template>
<script>
import req from '@/api/buyback/buyback'
import uploadImg from '@/components/uploadFile/uploadImg'
import vehiclecollectionrecords from '../cuishoucuoshiFlow/relation/vehiclecollectionrecords'
import financialschemeInfo from '../publicPage/financialschemeInfo'
export default {
name: 'BuyBackEdit',
components: {
uploadImg,
vehiclecollectionrecords,
financialschemeInfo
},
computed: {
// --
calculateBankSettlePrice() {
return parseFloat(this.formobj.bankCostVo.price === '' ? 0 : this.formobj.bankCostVo.price) + parseFloat(this.formobj.bankCostVo.currentNotDuePrice === '' ? 0 : this.formobj.bankCostVo.currentNotDuePrice) + parseFloat(this.formobj.bankCostVo.notDuePrice === '' ? 0 : this.formobj.bankCostVo.notDuePrice) + parseFloat(this.formobj.bankCostVo.bankInterest === '' ? 0 : this.formobj.bankCostVo.bankInterest) + parseFloat(this.formobj.bankCostVo.bankNominalPrice === '' ? 0 : this.formobj.bankCostVo.bankNominalPrice) + parseFloat(this.formobj.bankCostVo.bankContractLiquidated === '' ? 0 : this.formobj.bankCostVo.bankContractLiquidated) + parseFloat(this.formobj.bankCostVo.bankOtherReceivable === '' ? 0 : this.formobj.bankCostVo.bankOtherReceivable) || 0
},
// --
calculateSettleAll() {
return parseFloat(this.formobj.companyCostVo.overduePrice === '' ? 0 : this.formobj.companyCostVo.overduePrice) + parseFloat(this.formobj.companyCostVo.funfCost === '' ? 0 : this.formobj.companyCostVo.funfCost) + parseFloat(this.formobj.companyCostVo.bankOverInterest === '' ? 0 : this.formobj.companyCostVo.bankOverInterest) + parseFloat(this.formobj.companyCostVo.companyCurrentNotPrice === '' ? 0 : this.formobj.companyCostVo.companyCurrentNotPrice) + parseFloat(this.formobj.companyCostVo.bankNotPrice === '' ? 0 : this.formobj.companyCostVo.bankNotPrice) + parseFloat(this.formobj.companyCostVo.deductionAmount === '' ? 0 : this.formobj.companyCostVo.deductionAmount) + parseFloat(this.formobj.companyCostVo.contractLiquidated === '' ? 0 : this.formobj.companyCostVo.contractLiquidated) + parseFloat(this.formobj.companyCostVo.companyOtherPrice === '' ? 0 : this.formobj.companyCostVo.companyOtherPrice) - parseFloat(this.formobj.companyCostVo.loanDeposit === '' ? 0 : this.formobj.companyCostVo.loanDeposit) || 0
},
//
calculateProfit() {
return (parseFloat(this.formobj.companyCostVo.bankOverInterest === '' ? 0 : this.formobj.companyCostVo.bankOverInterest) + parseFloat(this.formobj.companyCostVo.companyNominalPrice === '' ? 0 : this.formobj.companyCostVo.companyNominalPrice) + parseFloat(this.formobj.companyCostVo.contractLiquidated === '' ? 0 : this.formobj.companyCostVo.contractLiquidated) + parseFloat(this.formobj.companyCostVo.companyOtherPrice === '' ? 0 : this.formobj.companyCostVo.companyOtherPrice)) - (parseFloat(this.formobj.bankCostVo.bankInterest === '' ? 0 : this.formobj.bankCostVo.bankInterest) + parseFloat(this.formobj.bankCostVo.bankNominalPrice === '' ? 0 : this.formobj.bankCostVo.bankNominalPrice) + parseFloat(this.formobj.bankCostVo.bankContractLiquidated === '' ? 0 : this.formobj.bankCostVo.bankContractLiquidated) + parseFloat(this.formobj.bankCostVo.bankOtherReceivable === '' ? 0 : this.formobj.bankCostVo.bankOtherReceivable)) || 0
}
},
data() {
return {
viewTitle: '',
viewState: 1,
submitdisabled: false,
formobj: {
amount: '',
applyDate: '',
bankAccountNo: '',
bankContractNo: '',
bankCostVo: {
bankContractLiquidated: '',
bankInterest: '',
bankNominalPrice: '',
bankOtherReceivable: '',
bankSettlePrice: '',
bankfiles: [],
currentNotDuePrice: '',
notDuePrice: '',
otherReceivableRemarks: '',
price: ''
},
bankName: '',
bankReceivingAccount: '',
busVinSid: '',
buybacksReason: '',
buyfiles: [],
companyCostVo: {
bankNotPrice: '',
bankOverInterest: '',
companyCurrentNotPrice: '',
companyNominalPrice: '',
companyOtherPrice: '',
contractLiquidated: '',
deductionAmount: '',
funfCost: '',
loanDeposit: '',
otherCostRemarks: '',
overduePrice: '',
profit: '',
putBankInterest: '',
settleAll: ''
},
createByName: '',
createDept: '',
createDeptSid: '',
currentNotDuePrice: '',
customerName: '',
customerSid: '',
instanceId: '',
loanContractNo: '',
loanName: '',
loanSid: '',
notDuePrice: '',
orgPath: '',
overdueMonthPrice: '',
payRemarks: '',
prepareDate: '',
salesOrderSid: '',
sid: '',
taskId: '',
userSid: '',
vehMark: '',
vinNo: ''
},
rules: {}
}
},
created() {
console.log('url:' + window.location.href)
var one = window.location.href.indexOf('&data') + 6
const data = window.location.href.substr(one) // urlunescape()web,使
const obj = JSON.parse(decodeURIComponent(data))
this.showInfo(obj.businessSid)
},
mounted() {
window.parent.postMessage({
cmd: 'returnHeight',
params: {
//
code: 2,
data: 500 + 'px'
}
}, '*')
},
methods: {
UpNumber(e) {
e.target.value = e.target.value.replace(/[^0-9.]/g, '') // .
e.target.value = e.target.value.replace(/^00/, '0.') // 0
e.target.value = e.target.value.replace(/\.{2,}/g, '.') // .
e.target.value = e.target.value.replace('.', '$#$').replace(/\./g, '').replace('$#$', '.')
e.target.value = e.target.value.replace(/^(\-)*(\d+)\.(\d\d).*$/, '$1$2.$3') //
if (e.target.value.indexOf('.') < 0 && e.target.value !== '' && e.target.value !== '-') {
// 0102
e.target.value = parseFloat(e.target.value)
}
},
showInfo(sid) {
this.viewTitle = '【编辑】回购申请'
this.$nextTick(() => {
this.$refs['form_obj'].clearValidate()
})
req.fetchBySid(sid).then((res) => {
if (res.success) {
this.formobj = res.data
}
})
},
//
lookCSJL(sid) {
if (sid !== '') {
this.viewState = 2
this.$refs['divCollection'].showInfo({ saleVehSid: this.formobj.busVinSid })
} else {
this.$message({ showClose: true, type: 'error', message: '暂无催收记录' })
}
},
lookJRFA(sid) {
if (sid !== '') {
req.selectDetailss({ businessSid: this.formobj.salesOrderSid }).then((res) => {
if (res.success) {
this.viewState = 3
this.$refs['divFinancial'].showInfo(res.data, '03')
}
})
} else {
this.$message({ showClose: true, type: 'error', message: '暂无金融方案' })
}
},
resetState() {
this.viewState = 1
},
//
changeDate(val) {
req.repurchaseInit({ busVinSid: this.formobj.busVinSid, orgPath: this.formobj.orgPath, prepareDate: val, userSid: this.formobj.userSid }).then((res) => {
if (res.success) {
this.formobj.overdueMonthPrice = res.data.overdueMonthPrice
this.formobj.currentNotDuePrice = res.data.currentNotDuePrice
this.formobj.notDuePrice = res.data.notDuePrice
this.formobj.companyCostVo.loanDeposit = res.data.companyCostVo.loanDeposit
this.formobj.companyCostVo.overduePrice = res.data.companyCostVo.overduePrice
this.formobj.companyCostVo.putBankInterest = res.data.companyCostVo.putBankInterest
this.formobj.companyCostVo.funfCost = res.data.companyCostVo.funfCost
this.formobj.companyCostVo.companyCurrentNotPrice = res.data.companyCostVo.companyCurrentNotPrice
this.formobj.companyCostVo.deductionAmount = res.data.companyCostVo.deductionAmount
}
})
},
notDuePriceInput(val) {
this.formobj.companyCostVo.bankNotPrice = val
},
bankInterestInput(val) {
this.formobj.companyCostVo.bankOverInterest = val
},
bankNominalPriceInput(val) {
this.formobj.companyCostVo.companyNominalPrice = val
},
bankContractLiquidatedInput(val) {
this.formobj.companyCostVo.contractLiquidated = val
},
saveOrUpdate() {
this.formobj.bankCostVo.bankSettlePrice = this.calculateBankSettlePrice
this.formobj.amount = this.calculateBankSettlePrice
this.formobj.companyCostVo.settleAll = this.calculateSettleAll
this.formobj.companyCostVo.profit = this.calculateProfit
this.$refs['form_obj'].validate((valid) => {
if (valid) {
this.submitdisabled = true
req.saveOrUpdate(this.formobj).then((res) => {
if (res.success) {
this.$message({ showClose: true, type: 'success', message: '保存成功' })
// ()
window.parent.postMessage({
cmd: 'returnHeight',
params: {
//
code: 1
}
}, '*')
} else {
this.submitdisabled = false
}
}).catch(() => {
this.submitdisabled = false
})
}
})
},
submit() {
this.formobj.bankCostVo.bankSettlePrice = this.calculateBankSettlePrice
this.formobj.amount = this.calculateBankSettlePrice
this.formobj.companyCostVo.settleAll = this.calculateSettleAll
this.formobj.companyCostVo.profit = this.calculateProfit
this.$refs['form_obj'].validate((valid) => {
if (valid) {
this.submitdisabled = true
req.submit(this.formobj).then((res) => {
if (res.success) {
this.$message({ showClose: true, type: 'success', message: '操作成功' })
// ()
window.parent.postMessage({
cmd: 'returnHeight',
params: {
//
code: 1
}
}, '*')
} else {
this.submitdisabled = false
}
}).catch(() => {
this.submitdisabled = false
})
}
})
}
}
}
</script>
<style scoped>
.span-sty {
width: 160px !important;
}
.addinputInfo {
margin-left: 150px !important;
}
.formaddcopy02 .el-row .el-col /deep/ .el-form-item .addinputw {
margin-left: 150px !important;
width: calc(100% - 145px);
}
</style>

472
anrui-riskcenter-ui/src/views/workFlow/huigouFlow/buybackYiBan.vue

@ -0,0 +1,472 @@
<template>
<div class="app-container">
<div v-show="viewState == 1">
<div class="tab-header webtop">
<div>{{ viewTitle }}</div>
<div>
<el-button type="danger" size="small" @click="openRevoke()">撤回</el-button>
</div>
</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>
<el-form-item><span class="addinputInfo">{{ formobj.createDept }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">申请人</div>
<el-form-item><span class="addinputInfo">{{ formobj.createByName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">申请日期</div>
<el-form-item><span class="addinputInfo">{{ formobj.applyDate }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">车架号</div>
<el-form-item><span class="addinputInfo">{{ formobj.vinNo }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">车牌号</div>
<el-form-item><span class="addinputInfo">{{ formobj.vehMark }}</span></el-form-item>
</el-col>
<el-col :span="8">
<el-form-item>
<span style="margin-left: 10px;color: #20a0ff" @click="lookCSJL(formobj.csjlSid)">催收记录</span><span style="margin-left: 10px;color: #20a0ff" @click="lookJRFA(formobj.jrfaSid)">金融方案</span>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">客户名称</div>
<el-form-item><span class="addinputInfo">{{ formobj.customerName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">贷款人</div>
<el-form-item><span class="addinputInfo">{{ formobj.loanName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">贷款合同编号</div>
<el-form-item><span class="addinputInfo">{{ formobj.loanContractNo }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankName }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方合同编号</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankContractNo }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">预计结清日期</div>
<el-form-item><span class="addinputInfo">{{ formobj.prepareDate }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">公司当前逾期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.overdueMonthPrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">公司当期未到期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.currentNotDuePrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">公司未到期金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.notDuePrice }}</span></el-form-item>
</el-col>
</el-row>
<div class="title">资方结清费用</div>
<el-row>
<el-col :span="8">
<div class="span-sty">资方逾期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.price }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方当期未到期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.currentNotDuePrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方未到期金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.notDuePrice }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方逾期利息</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.bankInterest }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方名义价</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.bankNominalPrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方合同违约金</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.bankContractLiquidated }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方其他应收</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.bankOtherReceivable }}</span></el-form-item>
</el-col>
<el-col :span="16">
<div class="span-sty">其他应收说明</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.otherReceivableRemarks }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">资方结清金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankCostVo.bankSettlePrice }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">附件</div>
<el-form-item>
<el-image class="addinputInfo" style="width: 150px;height: 150px" v-for="(item, index) in formobj.bankCostVo.bankfiles" :key="index" :src="item" :preview-src-list="formobj.bankCostVo.bankfiles" />
</el-form-item>
</el-col>
</el-row>
<div class="title" style="display: flex;flex-direction: row;justify-content: space-between;align-items: center">
<div>公司结清费用</div>
<div>贷款保整金<span>{{ formobj.companyCostVo.loanDeposit }}</span></div>
</div>
<el-row>
<el-col :span="8">
<div class="span-sty">公司逾期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.overduePrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">垫资方逾期利息</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.putBankInterest }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资金占用费</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.funfCost }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">资方逾期利息</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.bankOverInterest }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">公司当期未到期月还</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.companyCurrentNotPrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方未到期金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.bankNotPrice }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">贷款保证金扣罚金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.deductionAmount }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">名义价</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.companyNominalPrice }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">合同违约金</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.contractLiquidated }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<div class="span-sty">公司其他费用</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.companyOtherPrice }}</span></el-form-item>
</el-col>
<el-col :span="16" class="tlineheightb">
<div class="span-sty">其他费用说明</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.otherCostRemarks }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">公司正常结清合计</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.settleAll }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">结清利润</div>
<el-form-item><span class="addinputInfo">{{ formobj.companyCostVo.profit }}</span></el-form-item>
</el-col>
</el-row>
<div class="title">回购情况</div>
<el-row>
<el-col :span="8">
<div class="span-sty">回购金额</div>
<el-form-item><span class="addinputInfo">{{ formobj.amount }}</span></el-form-item>
</el-col>
<el-col :span="16" class="tlineheightb">
<div class="span-sty">回购原因</div>
<el-form-item><span class="addinputInfo">{{ formobj.buybacksReason }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8" class="tlineheightb">
<div class="span-sty">资方收款账户名称</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankReceivingAccount }}</span></el-form-item>
</el-col>
<el-col :span="8">
<div class="span-sty">资方收款账号</div>
<el-form-item><span class="addinputInfo">{{ formobj.bankAccountNo }}</span></el-form-item>
</el-col>
<el-col :span="8" class="tlineheightb">
<div class="span-sty">付款时需备注内容</div>
<el-form-item><span class="addinputInfo">{{ formobj.payRemarks }}</span></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<div class="span-sty">附件</div>
<el-form-item>
<el-image class="addinputInfo" style="width: 150px;height: 150px" v-for="(item, index) in formobj.buyfiles" :key="index" :src="item" :preview-src-list="formobj.buyfiles" />
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
</div>
<!-- 查看催收记录 -->
<vehiclecollectionrecords v-show="viewState == 2" ref="divCollection" @doback="resetState"/>
<!-- 查看金融方案 -->
<financialschemeInfo v-show="viewState == 3" ref="divFinancial" @doback="resetState"/>
</div>
</template>
<script>
import req from '@/api/buyback/buyback'
import vehiclecollectionrecords from '../cuishoucuoshiFlow/relation/vehiclecollectionrecords'
import financialschemeInfo from '../publicPage/financialschemeInfo'
export default {
name: 'BuyBackYiBan',
components: {
vehiclecollectionrecords,
financialschemeInfo
},
data() {
return {
viewTitle: '',
viewState: 1,
formobj: {
amount: '',
applyDate: '',
bankAccountNo: '',
bankContractNo: '',
bankCostVo: {
bankContractLiquidated: '',
bankInterest: '',
bankNominalPrice: '',
bankOtherReceivable: '',
bankSettlePrice: '',
bankfiles: [],
currentNotDuePrice: '',
notDuePrice: '',
otherReceivableRemarks: '',
price: ''
},
bankName: '',
bankReceivingAccount: '',
busVinSid: '',
buybacksReason: '',
buyfiles: [],
companyCostVo: {
bankNotPrice: '',
bankOverInterest: '',
companyCurrentNotPrice: '',
companyNominalPrice: '',
companyOtherPrice: '',
contractLiquidated: '',
deductionAmount: '',
funfCost: '',
loanDeposit: '',
otherCostRemarks: '',
overduePrice: '',
profit: '',
putBankInterest: '',
settleAll: ''
},
createByName: '',
createDept: '',
createDeptSid: '',
currentNotDuePrice: '',
customerName: '',
customerSid: '',
instanceId: '',
loanContractNo: '',
loanName: '',
loanSid: '',
notDuePrice: '',
orgPath: '',
overdueMonthPrice: '',
payRemarks: '',
prepareDate: '',
salesOrderSid: '',
sid: '',
taskId: '',
userSid: '',
vehMark: '',
vinNo: ''
},
//
linkByParameter: {
businessSid: '',
comment: '',
instanceId: '',
taskId: '',
orgSidPath: '',
taskDefKey: '',
userSid: ''
},
rules: {}
}
},
created() {
console.log('url:' + window.location.href)
var one = window.location.href.indexOf('&data') + 6
const data = window.location.href.substr(one) // urlunescape()web,使
const obj = JSON.parse(decodeURIComponent(data))
console.log('iframe页面获取的obj:', obj)
//
this.linkByParameter.businessSid = obj.businessSid
this.linkByParameter.instanceId = obj.instanceId
this.linkByParameter.taskId = obj.taskId
this.linkByParameter.taskDefKey = obj.taskDefKey
this.linkByParameter.userSid = window.sessionStorage.getItem('userSid')
//
this.showInfo(obj.businessSid)
},
mounted() {
window.parent.postMessage({
cmd: 'returnHeight',
params: {
//
code: 2,
data: 500 + 'px'
}
}, '*')
},
methods: {
showInfo(sid) {
this.viewTitle = '回购申请详情'
this.$nextTick(() => {
this.$refs['form_obj'].clearValidate()
})
req.fetchBySid(sid).then((res) => {
if (res.success) {
this.formobj = res.data
if (this.formobj.bankCostVo.bankfiles.length > 0) {
const aa = []
this.formobj.bankCostVo.bankfiles.forEach((e) => {
aa.push(e.url)
})
this.formobj.bankCostVo.bankfiles = aa
}
if (this.formobj.buyfiles.length > 0) {
const bb = []
this.formobj.buyfiles.forEach((e) => {
bb.push(e.url)
})
this.formobj.buyfiles = bb
}
}
})
},
//
lookCSJL(sid) {
if (sid !== '') {
this.viewState = 2
this.$refs['divCollection'].showInfo({ saleVehSid: this.formobj.busVinSid })
} else {
this.$message({ showClose: true, type: 'error', message: '暂无催收记录' })
}
},
lookJRFA(sid) {
if (sid !== '') {
req.selectDetailss({ businessSid: this.formobj.salesOrderSid }).then((res) => {
if (res.success) {
this.viewState = 3
this.$refs['divFinancial'].showInfo(res.data, '03')
}
})
} else {
this.$message({ showClose: true, type: 'error', message: '暂无金融方案' })
}
},
resetState() {
this.viewState = 1
},
/** 确认撤回任务 */
openRevoke() {
this.$confirm('是否确认执行撤回操作', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.handleRevoke()
}).catch(() => {
this.$message({
type: 'info',
message: '已取消撤回'
})
})
},
/** 撤回任务 */
handleRevoke() {
req.revokeProcess(this.linkByParameter).then((response) => {
if (response.success) {
this.$notify({
title: '提示',
message: '执行成功',
type: 'success',
duration: 2000
})
this.nodeDialogVisible = false
//
window.parent.postMessage({
cmd: 'returnHeight',
params: {
//
code: 1
}
}, '*')
}
})
}
}
}
</script>
<style scoped>
.span-sty {
width: 160px !important;
}
.addinputInfo {
margin-left: 150px !important;
}
.tlineheightb {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
}
/deep/ .tlineheightb .el-form-item .el-form-item__content .addinputInfo {
line-height: 15px !important;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
}
</style>
Loading…
Cancel
Save