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

全部案件调整

parent 7e32f25e
......@@ -54,9 +54,12 @@
import { reactive, ref } from 'vue';
import { getCreditPage, getCreditTotal } from '@/api/property';
import { ElButton, ElMessage, ElTag } from 'element-plus';
import { getTenantPage } from '@/api/tenant';
import { useAuthStore } from '@/stores/modules/auth';
const caseModalRef = ref();
const caseLRef = ref();
const statisis = ref({});
const { authButtonListGet } = useAuthStore(); // 获取用户权限列表
import { onMounted } from 'vue';
import { getPlatformPage } from '@/api/platform';
......@@ -282,20 +285,6 @@
labelWidth: 90
},
},
{
field: 'principalBalance',
showOverflow: 'tooltip',
title: '本金余额',
width: 80,
search: { el: 'input', props: { clearable: true }, labelWidth: 90 },
},
{
field: 'commission',
showOverflow: 'tooltip',
title: '手续费',
width: 80,
search: { el: 'input', props: { clearable: true }, labelWidth: 90 },
},
{
field: 'followStatus',
showOverflow: 'tooltip',
......@@ -336,6 +325,20 @@
},
},
},
{
field: 'principalBalance',
showOverflow: 'tooltip',
title: '本金余额',
width: 80,
search: { el: 'input', props: { clearable: true }, labelWidth: 90 },
},
{
field: 'commission',
showOverflow: 'tooltip',
title: '手续费',
width: 80,
search: { el: 'input', props: { clearable: true }, labelWidth: 90 },
},
{
field: 'caseStatus',
title: '案件状态',
......@@ -354,6 +357,21 @@
},
},
},
{
showOverflow: 'tooltip',
slots: {
default: ({ row }) => {
return (
<>{row?.tenant?.name}</>
);
},
},
enum: () => getTenantPage({ current: 1, size: 999999999, status: 'enable' }),
search: authButtonListGet.includes('allcation_for_tenant') ? { el: 'select', props: { filterable: true }, key: 'tenant', labelWidth: 105 } : null,
fieldNames: { label: 'name', value: 'id' },
title: '调解中心',
width: 100,
},
{
field: 'credit?.borrowingTime',
title: '借款时间',
......
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