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

拨打跟进记录修改

parent 0f9ac6ce
......@@ -41,6 +41,7 @@ export function useProTable(
icon: 'vxe-icon-menu',
},
},
showHeaderOverflow:'tooltip',
rowConfig: {
height: 34
},
......
......@@ -470,9 +470,6 @@
title: '剩余待还金额',
},
],
cellConfig: {
height: 16
},
onCheckboxChange: onCheckboxChange,
toolbarConfig: { enabled: false },
});
......
......@@ -297,7 +297,7 @@
const form = reactive({
images: [],
notes: [],
phoneResultStatus: '',
phoneResultStatus: 'later',
others: [],
voices: [],
remark: '',
......@@ -464,7 +464,7 @@
currentDetail.value = detail;
console.log('currentInfo', currentInfo.value, currentDetail.value);
form.sum = 0;
form.phoneResultStatus = '';
form.phoneResultStatus = 'later';
form.remark = '';
form.nextTime = null;
form.trackTime = dayjs().format('YYYY-MM-DD HH:mm:ss');
......
<template>
<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="mt-2">
<el-button type="primary" @click="repair">修复申请</el-button>
......@@ -796,7 +799,7 @@
},
{
field: 'kinship',
width: 99,
width: 110,
title: '与债权人关系',
showOverflow: 'tooltip',
},
......@@ -1152,7 +1155,7 @@
default: ({ row, rowIndex }) => {
return (
<>
<ElButton type="primary" onClick={() => returnCrash(row, '结清减免还款')}>
<ElButton type="primary" onClick={() => returnCrash(row, '结清减免还款')} disabled={row.flowStatus !== 'pass'}>
还款
</ElButton>
</>
......@@ -1169,6 +1172,7 @@
detail.value = result;
if (detail.value?.borrower?.id) {
if (type === '跟进') {
getGuarantorsList(detail.value?.borrower?.id);
getTrackRecordList(detail.value?.borrower?.id);
} else if (type === '减免') {
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