|
@@ -23,6 +23,7 @@ import { Des, DescriptionsList, handleDesList } from '@/common/components/common
|
|
|
import { handlePreviewImg } from '@/common/setup/upload';
|
|
import { handlePreviewImg } from '@/common/setup/upload';
|
|
|
import { isPingAnOem, isQianHaiJin } from '@/common/config/projectName';
|
|
import { isPingAnOem, isQianHaiJin } from '@/common/config/projectName';
|
|
|
import { QhjCustomer } from '@/services/go/ermcp/qhj/interface';
|
|
import { QhjCustomer } from '@/services/go/ermcp/qhj/interface';
|
|
|
|
|
+import { formatTime } from '@/common/methods';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
|
name: 'custom-detail-desc',
|
|
name: 'custom-detail-desc',
|
|
@@ -83,7 +84,7 @@ export default defineComponent({
|
|
|
{ label: '客户类型', value: '个人' },
|
|
{ label: '客户类型', value: '个人' },
|
|
|
{ label: '姓名', value: formatValue(data.username) },
|
|
{ label: '姓名', value: formatValue(data.username) },
|
|
|
{ label: '性别', value: data.sex === 1 ? '男' : data.sex === 0 ? '女' : '--' },
|
|
{ label: '性别', value: data.sex === 1 ? '男' : data.sex === 0 ? '女' : '--' },
|
|
|
- { label: '生日', value: formatValue(data.birthday) },
|
|
|
|
|
|
|
+ { label: '生日', value: formatValue(formatTime(data.birthday, 'd')) },
|
|
|
{ label: '身份证号码', value: formatValue(data.cardnum) },
|
|
{ label: '身份证号码', value: formatValue(data.cardnum) },
|
|
|
{ label: '手机号码', value: formatValue(data.mobile) },
|
|
{ label: '手机号码', value: formatValue(data.mobile) },
|
|
|
{ label: '身份证正面照', value: formatValue(getImgName(data.cardfrontphotourl)), className: 'blue' },
|
|
{ label: '身份证正面照', value: formatValue(getImgName(data.cardfrontphotourl)), className: 'blue' },
|