feat(shop): 新增客户跟进记录功能

- 在经销商申请模块中添加客户跟进记录的增删改查接口
- 新增 ShopDealerRecord 数据模型定义
- 更新经销商申请编辑页面,支持客户信息和报备人信息的录入- 添加收益基数字段 rate,用于设置分销比例
- 修改审核状态为跟进状态,包括跟进中、已签约、已取消三种状态
- 增加跟进情况列表展示和编辑功能,支持添加最多10条跟进记录
- 调整页面字段标签和提示文案,使表述更准确
-优化表单验证规则,适配新的业务逻辑
-修复时间格式化问题,统一使用 YYYY-MM-DD HH:mm:ss 格式- 移除旧的审核时间和驳回原因字段,替换为取消原因
- 更新
This commit is contained in:
2025-10-02 13:21:38 +08:00
parent c7188ee8eb
commit 645d987f3b
6 changed files with 662 additions and 293 deletions

View File

@@ -17,10 +17,10 @@
/>
</a-form-item>
<a-form-item label="手机号码">
<a-form-item label="联系电话">
<a-input
v-model:value="searchForm.mobile"
placeholder="请输入手机号码"
placeholder="客户联系电话"
allow-clear
style="width: 160px"
/>

View File

@@ -5,7 +5,7 @@
:visible="visible"
:maskClosable="false"
:maxable="maxable"
:title="isUpdate ? '编辑分销商申请' : '新增分销商申请'"
:title="isUpdate ? '编辑客户' : '新增客户'"
:body-style="{ paddingBottom: '28px' }"
@update:visible="updateVisible"
@ok="save"
@@ -17,17 +17,65 @@
:label-col="{ span: 6 }"
:wrapper-col="{ span: 18 }"
>
<!-- 申请人信息 -->
<!-- 客户信息 -->
<a-divider orientation="left">
<span style="color: #1890ff; font-weight: 600;">申请人信息</span>
<span style="color: #1890ff; font-weight: 600;">客户信息</span>
</a-divider>
<a-row :gutter="16">
<a-col :span="12">
<a-form-item label="用户ID" name="userId">
<a-form-item label="客户名称" name="dealerName">
<a-input
placeholder="请输入客户名称"
v-model:value="form.dealerName"
:disabled="form.applyStatus == 20"
/>
</a-form-item>
</a-col>
<a-col :span="12">
<a-form-item label="联系人" name="realName">
<a-input
placeholder="请输入联系人"
v-model:value="form.realName"
:disabled="form.applyStatus == 20"
/>
</a-form-item>
</a-col>
<a-col :span="12">
<a-form-item label="手机号码" name="mobile">
<a-input
placeholder="请输入手机号码"
:disabled="form.applyStatus == 20"
v-model:value="form.mobile"
/>
</a-form-item>
</a-col>
<a-col :span="12">
<a-form-item label="收益基数" name="rate">
<a-input-number
placeholder="0.007"
:min="0"
:max="1"
step="0.01"
:disabled="!hasRole('superAdmin')"
v-model:value="form.rate"
/>
</a-form-item>
</a-col>
</a-row>
<!-- 报备人信息 -->
<a-divider orientation="left">
<span style="color: #1890ff; font-weight: 600;">报备人信息</span>
</a-divider>
<a-row :gutter="16">
<a-col :span="12">
<a-form-item label="报备人ID" name="userId">
<a-input-number
:min="1"
placeholder="请输入用户ID"
placeholder="请输入报备人ID"
:disabled="isUpdate"
v-model:value="form.userId"
style="width: 100%"
@@ -35,23 +83,13 @@
</a-form-item>
</a-col>
<a-col :span="12">
<a-form-item label="真实姓名" name="realName">
<a-input
placeholder="请输入真实姓名"
v-model:value="form.realName"
<a-form-item label="报备人" name="nickName">
<a-input-number
:min="1"
placeholder="请输入报备人名称"
:disabled="isUpdate"
/>
</a-form-item>
</a-col>
</a-row>
<a-row :gutter="16">
<a-col :span="12">
<a-form-item label="手机号码" name="mobile">
<a-input
placeholder="请输入手机号码"
:disabled="isUpdate"
v-model:value="form.mobile"
v-model:value="form.nickName"
style="width: 100%"
/>
</a-form-item>
</a-col>
@@ -66,11 +104,22 @@
/>
</a-form-item>
</a-col>
<a-col :span="12">
<a-form-item label="推荐人名称" name="refereeName">
<a-input-number
:min="1"
placeholder="请输入推荐人名称"
:disabled="isUpdate"
v-model:value="form.refereeName"
style="width: 100%"
/>
</a-form-item>
</a-col>
</a-row>
<!-- 审核信息 -->
<a-divider orientation="left">
<span style="color: #1890ff; font-weight: 600;">审核信息</span>
<span style="color: #1890ff; font-weight: 600;">审核状态</span>
</a-divider>
<a-row :gutter="16">
@@ -78,39 +127,25 @@
<a-form-item label="审核状态" name="applyStatus">
<a-select v-model:value="form.applyStatus" placeholder="请选择审核状态" @change="handleStatusChange">
<a-select-option :value="10">
<a-tag color="processing">待审核</a-tag>
<span style="margin-left: 8px;">等待审核</span>
<a-tag color="orange">跟进中</a-tag>
<span style="margin-left: 8px;">正在跟进中</span>
</a-select-option>
<a-select-option :value="20">
<a-tag color="success">审核通过</a-tag>
<span style="margin-left: 8px;">申请通过</span>
<a-tag color="success">已签约</a-tag>
<span style="margin-left: 8px;">客户已签约</span>
</a-select-option>
<a-select-option :value="30">
<a-tag color="error">审核驳回</a-tag>
<span style="margin-left: 8px;">申请驳回</span>
<a-tag color="error">已取消</a-tag>
<span style="margin-left: 8px;">客户已取消</span>
</a-select-option>
</a-select>
</a-form-item>
</a-col>
<!-- <a-col :span="12">-->
<!-- <a-form-item label="审核时间" name="auditTime" v-if="form.applyStatus === 20 || form.applyStatus === 30">-->
<!-- <a-date-picker-->
<!-- v-model:value="form.auditTime"-->
<!-- show-time-->
<!-- format="YYYY-MM-DD HH:mm:ss"-->
<!-- placeholder="请选择审核时间"-->
<!-- style="width: 100%"-->
<!-- />-->
<!-- </a-form-item>-->
<!-- </a-col>-->
</a-row>
<a-row :gutter="16" v-if="form.applyStatus === 30">
<a-col :span="24">
<a-form-item label="驳回原因" name="rejectReason">
<a-col :span="12" v-if="form.applyStatus === 30">
<a-form-item label="取消原因" name="rejectReason">
<a-textarea
v-model:value="form.rejectReason"
placeholder="请输入驳回原因"
placeholder="请输入取消原因"
style="width: 100%"
:rows="3"
:maxlength="200"
@@ -119,262 +154,448 @@
</a-form-item>
</a-col>
</a-row>
<!-- 跟进情况 -->
<a-divider orientation="left" v-if="form.applyStatus == 10">
<span style="color: #1890ff; font-weight: 600;">跟进情况</span>
</a-divider>
<!-- 跟进情况列表 -->
<div v-if="form.applyStatus == 10">
<a-row :gutter="16" style="margin-bottom: 16px;">
<a-col :span="24">
<a-button
type="primary"
@click="addFollowUp"
:disabled="followUpList.length >= 10"
size="small"
>
新增
</a-button>
<span style="margin-left: 12px; color: #999; font-size: 12px;">
最多可添加10条跟进信息当前已添加{{ followUpList.length }}
</span>
</a-col>
</a-row>
<div v-for="(item, index) in followUpList" :key="index"
style="margin-bottom: 16px; border: 1px solid #f0f0f0; padding: 12px; border-radius: 4px;">
<a-row :gutter="16">
<a-col :span="20">
<a-form-item
:label="`跟进内容${index + 1}`"
:name="['followUpList', index, 'content']"
>
<div v-if="item.status == 1" v-html="item.content"></div>
<a-textarea
v-else
v-model:value="item.content"
:disabled="!isUpdate"
placeholder="请输入跟进内容"
:rows="2"
:maxlength="500"
show-count
/>
</a-form-item>
</a-col>
<a-col :span="4" style="text-align: right;">
<a-button
type="link"
danger
@click="removeFollowUp(index)"
:disabled="followUpList.length <= 1"
>
删除
</a-button>
</a-col>
</a-row>
</div>
</div>
</a-form>
</ele-modal>
</template>
<script lang="ts" setup>
import { ref, reactive, watch } from 'vue';
import { Form, message } from 'ant-design-vue';
import dayjs from 'dayjs';
import { assignObject, uuid } from 'ele-admin-pro';
import { addShopDealerApply, updateShopDealerApply } from '@/api/shop/shopDealerApply';
import { ShopDealerApply } from '@/api/shop/shopDealerApply/model';
import { useThemeStore } from '@/store/modules/theme';
import { storeToRefs } from 'pinia';
import { ItemType } from 'ele-admin-pro/es/ele-image-upload/types';
import { FormInstance } from 'ant-design-vue/es/form';
import { FileRecord } from '@/api/system/file/model';
import {ref, reactive, watch} from 'vue';
import {Form, message} from 'ant-design-vue';
import dayjs from 'dayjs';
import {assignObject} from 'ele-admin-pro';
import {addShopDealerApply, updateShopDealerApply} from '@/api/shop/shopDealerApply';
import {listShopDealerRecord, addShopDealerRecord} from '@/api/shop/shopDealerRecord';
import {ShopDealerApply} from '@/api/shop/shopDealerApply/model';
import {ShopDealerRecord} from '@/api/shop/shopDealerRecord/model';
import {FormInstance, RuleObject} from 'ant-design-vue/es/form';
import {hasRole} from "@/utils/permission";
// 是否是修改
const isUpdate = ref(false);
const useForm = Form.useForm;
// 是否开启响应式布局
const themeStore = useThemeStore();
const { styleResponsive } = storeToRefs(themeStore);
// 是否是修改
const isUpdate = ref(false);
const useForm = Form.useForm;
const props = defineProps<{
// 弹窗是否打开
visible: boolean;
// 修改回显的数据
data?: ShopDealerApply | null;
}>();
const props = defineProps<{
// 弹窗是否打开
visible: boolean;
// 修改回显的数据
data?: ShopDealerApply | null;
}>();
const emit = defineEmits<{
(e: 'done'): void;
(e: 'update:visible', visible: boolean): void;
}>();
const emit = defineEmits<{
(e: 'done'): void;
(e: 'update:visible', visible: boolean): void;
}>();
// 提交状态
const loading = ref(false);
// 是否显示最大化切换按钮
const maxable = ref(true);
// 表格选中数据
const formRef = ref<FormInstance | null>(null);
const images = ref<ItemType[]>([]);
// 提交状态
const loading = ref(false);
// 是否显示最大化切换按钮
const maxable = ref(true);
// 表格选中数据
const formRef = ref<FormInstance | null>(null);
// 表单数据
const form = reactive<ShopDealerApply>({
applyId: undefined,
userId: undefined,
realName: '',
mobile: '',
refereeId: undefined,
applyType: 10,
applyTime: undefined,
applyStatus: 10,
auditTime: undefined,
rejectReason: '',
tenantId: undefined,
createTime: undefined,
updateTime: undefined
// 跟进情况列
const followUpList = ref<ShopDealerRecord[]>([
{
content: '',
status: 0,
sortNumber: 0
}
]);
// 表单数据
const form = reactive<ShopDealerApply>({
applyId: undefined,
userId: undefined,
nickName: undefined,
realName: '',
mobile: '',
dealerName: '',
rate: 0.007,
refereeId: undefined,
refereeName: undefined,
applyType: 10,
applyTime: undefined,
applyStatus: 10,
auditTime: undefined,
rejectReason: '',
tenantId: undefined,
createTime: undefined,
updateTime: undefined
});
/* 更新visible */
const updateVisible = (value: boolean) => {
emit('update:visible', value);
};
// 表单验证规则
const rules = reactive({
userId: [
{
required: true,
message: '请输入用户ID',
trigger: 'blur'
} as RuleObject
],
realName: [
{
required: true,
message: '请输入客户名称',
trigger: 'blur'
} as RuleObject,
{
min: 2,
max: 20,
message: '姓名长度应在2-20个字符之间',
trigger: 'blur'
} as RuleObject
],
rate: [
{
required: true,
message: '请输入收益基数',
trigger: 'blur'
} as RuleObject
],
mobile: [
{
required: true,
message: '请输入手机号码',
trigger: 'blur'
} as RuleObject,
{
pattern: /^1[3-9]\d{9}$/,
message: '请输入正确的手机号码',
trigger: 'blur'
} as RuleObject
],
applyType: [
{
required: true,
message: '请选择申请方式',
trigger: 'change'
} as RuleObject
],
applyStatus: [
{
required: true,
message: '请选择审核状态',
trigger: 'change'
} as RuleObject
],
rejectReason: [
{
required: true,
message: '驳回时必须填写驳回原因',
trigger: 'blur'
} as RuleObject
],
auditTime: [
{
required: true,
message: '审核时请选择审核时间',
trigger: 'change'
} as RuleObject
]
});
/* 添加跟进 */
const addFollowUp = () => {
if (followUpList.value.length >= 10) {
message.warning('最多只能添加10条跟进信息');
return;
}
followUpList.value.push({
content: '',
status: 0,
sortNumber: followUpList.value.length
});
};
/* 更新visible */
const updateVisible = (value: boolean) => {
emit('update:visible', value);
};
/* 删除跟进 */
const removeFollowUp = (index: number) => {
if (followUpList.value.length <= 1) {
message.warning('至少保留一条跟进信息');
return;
}
// 表单验证规则
const rules = reactive({
userId: [
{
required: true,
message: '请输入用户ID',
trigger: 'blur'
}
],
realName: [
{
required: true,
message: '请输入真实姓名',
trigger: 'blur'
},
{
min: 2,
max: 20,
message: '姓名长度应在2-20个字符之间',
trigger: 'blur'
}
],
mobile: [
{
required: true,
message: '请输入手机号码',
trigger: 'blur'
},
{
pattern: /^1[3-9]\d{9}$/,
message: '请输入正确的手机号码',
trigger: 'blur'
}
],
applyType: [
{
required: true,
message: '请选择申请方式',
trigger: 'change'
}
],
applyStatus: [
{
required: true,
message: '请选择审核状态',
trigger: 'change'
}
],
rejectReason: [
{
required: true,
message: '驳回时必须填写驳回原因',
trigger: 'blur'
}
],
auditTime: [
{
required: true,
message: '审核时请选择审核时间',
trigger: 'change'
}
]
});
followUpList.value.splice(index, 1);
};
/* 获取跟进记录 */
const fetchFollowUpRecords = async (dealerId: number) => {
try {
// 先通过list接口获取所有记录然后过滤
const allRecords = await listShopDealerRecord({});
const records = allRecords.filter(record => record.dealerId === dealerId);
const { resetFields } = useForm(form, rules);
/* 处理审核状态变化 */
const handleStatusChange = (value: number) => {
// 当状态改为审核通过或驳回时,自动设置审核时间为当前时间
if ((value === 20 || value === 30) && !form.auditTime) {
form.auditTime = dayjs();
if (records && records.length > 0) {
followUpList.value = records.map(record => ({
...record,
status: record.status || 0,
sortNumber: record.sortNumber || 0
}));
} else {
// 如果没有记录,初始化一条空记录
followUpList.value = [
{
content: '',
status: 0,
sortNumber: 0
}
];
}
// 当状态改为待审核时,清空审核时间和驳回原因
if (value === 10) {
form.auditTime = undefined;
form.rejectReason = '';
}
};
} catch (error) {
console.error('获取跟进记录失败:', error);
message.error('获取跟进记录失败');
// 初始化一条空记录
followUpList.value = [
{
content: '',
status: 0,
sortNumber: 0
}
];
}
};
/* 保存编辑 */
const save = () => {
if (!formRef.value) {
return;
/* 保存跟进记录 */
const saveFollowUpRecords = async (dealerId: number) => {
try {
// 保存每条跟进记录
for (const record of followUpList.value) {
const recordData: any = {
...record,
dealerId: dealerId,
userId: form.userId,
status: 1
};
// 如果有ID则更新否则新增
if (record.id) {
// 更新逻辑如果API支持
await addShopDealerRecord(recordData);
} else {
// 新增逻辑
await addShopDealerRecord(recordData);
}
}
// 动态验证规则
const validateFields: string[] = ['userId', 'realName', 'mobile', 'applyStatus'];
// message.success('跟进记录保存成功');
} catch (error) {
console.error('保存跟进记录失败:', error);
message.error('保存跟进记录失败');
throw error;
}
};
// 如果是驳回状态,需要验证驳回原因
if (form.applyStatus === 30) {
validateFields.push('rejectReason');
}
const {resetFields} = useForm(form, rules);
// 如果是审核通过或驳回状态,需要验证审核时间
if (form.applyStatus === 20 || form.applyStatus === 30) {
validateFields.push('auditTime');
}
/* 处理审核状态变化 */
const handleStatusChange = (value: number) => {
// 当状态改为审核通过或驳回时,自动设置审核时间为当前时间
if ((value === 20 || value === 30) && !form.auditTime) {
form.auditTime = dayjs().format('YYYY-MM-DD HH:mm:ss');
}
// 当状态改为待审核时,清空审核时间和驳回原因
if (value === 10) {
form.auditTime = undefined;
form.rejectReason = '';
}
};
formRef.value
.validate(validateFields)
.then(() => {
loading.value = true;
const formData = {
...form
};
/* 保存编辑 */
const save = () => {
if (!formRef.value) {
return;
}
// 处理时间字段转换 - 转换为ISO字符串格式
if (formData.applyTime) {
if (dayjs.isDayjs(formData.applyTime)) {
formData.applyTime = formData.applyTime.format('YYYY-MM-DD HH:mm:ss');
} else if (typeof formData.applyTime === 'number') {
formData.applyTime = dayjs(formData.applyTime).format('YYYY-MM-DD HH:mm:ss');
}
// 动态验证规则
const validateFields: string[] = ['userId', 'realName', 'mobile', 'applyStatus'];
// 如果是驳回状态,需要验证驳回原因
if (form.applyStatus === 30) {
validateFields.push('rejectReason');
}
// 如果是审核通过或驳回状态,需要验证审核时间
if (form.applyStatus === 20 || form.applyStatus === 30) {
validateFields.push('auditTime');
}
// 如果是跟进中状态,需要验证跟进内容
if (form.applyStatus === 10) {
// 构造跟进内容的验证字段
const followUpFields: string[] = [];
followUpList.value.forEach((_, index) => {
followUpFields.push(`followUpList.${index}.content`);
});
validateFields.push(...followUpFields);
}
formRef.value
.validate(validateFields)
.then(async () => {
loading.value = true;
const formData = {
...form
};
// 处理时间字段转换 - 转换为ISO字符串格式
if (formData.applyTime) {
if (dayjs.isDayjs(formData.applyTime)) {
formData.applyTime = formData.applyTime.format('YYYY-MM-DD HH:mm:ss');
} else if (typeof formData.applyTime === 'number') {
formData.applyTime = dayjs(formData.applyTime).format('YYYY-MM-DD HH:mm:ss');
}
}
if (formData.auditTime) {
if (dayjs.isDayjs(formData.auditTime)) {
formData.auditTime = formData.auditTime.format('YYYY-MM-DD HH:mm:ss');
} else if (typeof formData.auditTime === 'number') {
formData.auditTime = dayjs(formData.auditTime).format('YYYY-MM-DD HH:mm:ss');
}
}
// 当审核状态为通过或驳回时,确保有审核时间
if ((formData.applyStatus === 20 || formData.applyStatus === 30) && !formData.auditTime) {
formData.auditTime = dayjs().format('YYYY-MM-DD HH:mm:ss');
}
// 当状态为待审核时,清空审核时间
if (formData.applyStatus === 10) {
formData.auditTime = undefined;
}
const saveOrUpdate = isUpdate.value ? updateShopDealerApply : addShopDealerApply;
try {
const msg = await saveOrUpdate(formData);
message.success(msg);
// 如果是跟进中状态,保存跟进记录
if (formData.applyStatus === 10 && formData.applyId) {
await saveFollowUpRecords(formData.applyId);
}
if (formData.auditTime) {
if (dayjs.isDayjs(formData.auditTime)) {
formData.auditTime = formData.auditTime.format('YYYY-MM-DD HH:mm:ss');
} else if (typeof formData.auditTime === 'number') {
formData.auditTime = dayjs(formData.auditTime).format('YYYY-MM-DD HH:mm:ss');
}
}
updateVisible(false);
emit('done');
} catch (e: any) {
message.error(e.message);
} finally {
loading.value = false;
}
})
.catch(() => {
loading.value = false;
});
};
// 当审核状态为通过或驳回时,确保有审核时间
if ((formData.applyStatus === 20 || formData.applyStatus === 30) && !formData.auditTime) {
formData.auditTime = dayjs().format('YYYY-MM-DD HH:mm:ss');
}
watch(
() => props.visible,
async (visible) => {
if (visible) {
if (props.data) {
assignObject(form, props.data);
isUpdate.value = true;
// 当状态为待审核时,清空审核时间
if (formData.applyStatus === 10) {
formData.auditTime = undefined;
}
const saveOrUpdate = isUpdate.value ? updateShopDealerApply : addShopDealerApply;
saveOrUpdate(formData)
.then((msg) => {
loading.value = false;
message.success(msg);
updateVisible(false);
emit('done');
})
.catch((e) => {
loading.value = false;
message.error(e.message);
});
})
.catch(() => {});
};
watch(
() => props.visible,
(visible) => {
if (visible) {
if (props.data) {
assignObject(form, props.data);
// 处理时间字段 - 确保转换为dayjs对象
if (props.data.applyTime) {
form.applyTime = dayjs(props.data.applyTime);
}
if (props.data.auditTime) {
form.auditTime = dayjs(props.data.auditTime);
}
isUpdate.value = true;
} else {
// 重置为默认值
Object.assign(form, {
applyId: undefined,
userId: undefined,
realName: '',
mobile: '',
refereeId: undefined,
applyType: 10,
applyTime: dayjs(),
applyStatus: 10,
auditTime: undefined,
rejectReason: '',
tenantId: undefined,
createTime: undefined,
updateTime: undefined
});
isUpdate.value = false;
// 如果是修改且状态为跟进中,获取跟进记录
if (props.data.applyId && props.data.applyStatus === 10) {
await fetchFollowUpRecords(props.data.applyId);
}
} else {
resetFields();
// 重置为默认值
Object.assign(form, {
applyId: undefined,
userId: undefined,
realName: '',
mobile: '',
refereeId: undefined,
applyType: 10,
applyTime: dayjs().format('YYYY-MM-DD HH:mm:ss'),
applyStatus: 10,
auditTime: undefined,
rejectReason: '',
tenantId: undefined,
createTime: undefined,
updateTime: undefined
});
isUpdate.value = false;
// 重置跟进列表
followUpList.value = [
{
content: '',
status: 0,
sortNumber: 0
}
];
}
},
{ immediate: true }
);
} else {
resetFields();
}
},
{immediate: true}
);
</script>
<style lang="less" scoped>

View File

@@ -28,10 +28,17 @@
<template v-if="column.key === 'customer'">
<div class="flex flex-col">
<span class="font-medium">{{ record.dealerName }}</span>
<span>联系人{{ record.realName }}</span>
<span>联系电话{{ record.mobile }}</span>
<span class="text-gray-400">联系人{{ record.realName }}</span>
<span class="text-gray-400">联系电话{{ record.mobile }}</span>
<span class="text-gray-400">户号{{ record.dealerCode }}</span>
</div>
</template>
<template v-if="column.key === 'applicantInfo'">
<div class="text-gray-600">{{ record.nickName }}</div>
<div class="text-gray-400">{{ record.phone }}</div>
<div class="text-gray-400">{{ record.rate }}</div>
</template>
<template v-if="column.key === 'createTime'">
<div class="flex flex-col">
<span>{{ record.createTime }}</span>
@@ -149,15 +156,7 @@ const columns = ref<ColumnItem[]>([
{
title: '客户名称',
dataIndex: 'customer',
key: 'customer',
customRender: ({text}) => {
const typeMap = {
10: {text: '需审核', color: 'orange'},
20: {text: '免审核', color: 'green'}
};
const type = typeMap[text] || {text: '未知', color: 'default'};
return {type: 'tag', props: {color: type.color}, children: type.text};
}
key: 'customer'
},
{
title: '跟进情况',
@@ -165,17 +164,15 @@ const columns = ref<ColumnItem[]>([
key: 'comments',
align: 'left'
},
{
title: '收益基数',
dataIndex: 'rate',
key: 'rate',
align: 'left',
customRender: () => {
return `0.007`;
}
},
// {
// title: '收益基数',
// dataIndex: 'rate',
// key: 'rate',
// align: 'left'
// },
{
title: '报备人信息',
dataIndex: 'applicantInfo',
key: 'applicantInfo',
align: 'left',
fixed: 'left',