Commit e21e3df8 authored by 沈翠玲's avatar 沈翠玲

拨打跟进记录修改

parent 0f9ac6ce
...@@ -41,6 +41,7 @@ export function useProTable( ...@@ -41,6 +41,7 @@ export function useProTable(
icon: 'vxe-icon-menu', icon: 'vxe-icon-menu',
}, },
}, },
showHeaderOverflow:'tooltip',
rowConfig: { rowConfig: {
height: 34 height: 34
}, },
......
...@@ -470,9 +470,6 @@ ...@@ -470,9 +470,6 @@
title: '剩余待还金额', title: '剩余待还金额',
}, },
], ],
cellConfig: {
height: 16
},
onCheckboxChange: onCheckboxChange, onCheckboxChange: onCheckboxChange,
toolbarConfig: { enabled: false }, toolbarConfig: { enabled: false },
}); });
......
...@@ -297,7 +297,7 @@ ...@@ -297,7 +297,7 @@
const form = reactive({ const form = reactive({
images: [], images: [],
notes: [], notes: [],
phoneResultStatus: '', phoneResultStatus: 'later',
others: [], others: [],
voices: [], voices: [],
remark: '', remark: '',
...@@ -464,7 +464,7 @@ ...@@ -464,7 +464,7 @@
currentDetail.value = detail; currentDetail.value = detail;
console.log('currentInfo', currentInfo.value, currentDetail.value); console.log('currentInfo', currentInfo.value, currentDetail.value);
form.sum = 0; form.sum = 0;
form.phoneResultStatus = ''; form.phoneResultStatus = 'later';
form.remark = ''; form.remark = '';
form.nextTime = null; form.nextTime = null;
form.trackTime = dayjs().format('YYYY-MM-DD HH:mm:ss'); form.trackTime = dayjs().format('YYYY-MM-DD HH:mm:ss');
......
<template> <template>
<div class="card table-box"> <div class="card table-box">
<div class="public-header font-bold mb-1" style="font-size: 15px;line-height: 20px;">
{{ detail?.caseId }}
</div>
<div class="h-full w-full flex flex-col"> <div class="h-full w-full flex flex-col">
<div class="mt-2"> <div class="mt-2">
<el-button type="primary" @click="repair">修复申请</el-button> <el-button type="primary" @click="repair">修复申请</el-button>
...@@ -796,7 +799,7 @@ ...@@ -796,7 +799,7 @@
}, },
{ {
field: 'kinship', field: 'kinship',
width: 99, width: 110,
title: '与债权人关系', title: '与债权人关系',
showOverflow: 'tooltip', showOverflow: 'tooltip',
}, },
...@@ -1152,7 +1155,7 @@ ...@@ -1152,7 +1155,7 @@
default: ({ row, rowIndex }) => { default: ({ row, rowIndex }) => {
return ( return (
<> <>
<ElButton type="primary" onClick={() => returnCrash(row, '结清减免还款')}> <ElButton type="primary" onClick={() => returnCrash(row, '结清减免还款')} disabled={row.flowStatus !== 'pass'}>
还款 还款
</ElButton> </ElButton>
</> </>
...@@ -1169,6 +1172,7 @@ ...@@ -1169,6 +1172,7 @@
detail.value = result; detail.value = result;
if (detail.value?.borrower?.id) { if (detail.value?.borrower?.id) {
if (type === '跟进') { if (type === '跟进') {
getGuarantorsList(detail.value?.borrower?.id);
getTrackRecordList(detail.value?.borrower?.id); getTrackRecordList(detail.value?.borrower?.id);
} else if (type === '减免') { } else if (type === '减免') {
getReduces(detail.value?.borrower?.id).then((res) => { getReduces(detail.value?.borrower?.id).then((res) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment