|
@@ -43,7 +43,7 @@ export default defineComponent({
|
|
|
const { attachment1, cardfrontphotourl, cardbackphotourl } = props.selectedRow;
|
|
const { attachment1, cardfrontphotourl, cardbackphotourl } = props.selectedRow;
|
|
|
switch (label) {
|
|
switch (label) {
|
|
|
case '营业执照':
|
|
case '营业执照':
|
|
|
- previewImg(attachment1);
|
|
|
|
|
|
|
+ previewImg(cardfrontphotourl);
|
|
|
break;
|
|
break;
|
|
|
case '身份证正面照':
|
|
case '身份证正面照':
|
|
|
previewImg(cardfrontphotourl);
|
|
previewImg(cardfrontphotourl);
|
|
@@ -55,38 +55,38 @@ export default defineComponent({
|
|
|
}
|
|
}
|
|
|
watchEffect(() => {
|
|
watchEffect(() => {
|
|
|
// if (props.selectedRow.customername) {
|
|
// if (props.selectedRow.customername) {
|
|
|
- const data = props.selectedRow;
|
|
|
|
|
- // 个人
|
|
|
|
|
- const person = [
|
|
|
|
|
- { label: '客户类型', value: '个人' },
|
|
|
|
|
- { label: '姓名', value: formatValue(data.username) },
|
|
|
|
|
- { label: '身份证号码', value: formatValue(data.cardnum) },
|
|
|
|
|
- { label: '手机号码', value: formatValue(data.mobile) },
|
|
|
|
|
- { label: '身份证正面照', value: formatValue(getImgName(data.cardfrontphotourl)), className: 'blue' },
|
|
|
|
|
- { label: '身份证反面照', value: formatValue(getImgName(data.cardbackphotourl)), className: 'blue' },
|
|
|
|
|
- { label: '邮箱', value: formatValue(data.email) },
|
|
|
|
|
- { label: '联系电话', value: formatValue(data.telphone) },
|
|
|
|
|
- { label: '通讯地址', value: formatValue(data.address) },
|
|
|
|
|
- { label: '备注', value: formatValue(data.remark) },
|
|
|
|
|
- ];
|
|
|
|
|
- // 企业
|
|
|
|
|
- const company = [
|
|
|
|
|
- { label: '客户类型', value: '企业' },
|
|
|
|
|
- { label: '企业名称', value: data.customername },
|
|
|
|
|
- { label: '企业简称', value: formatValue(data.nickname) },
|
|
|
|
|
- { label: '证件类型', value: getCardTypeEnumItemName(data.cardtype) },
|
|
|
|
|
- { label: '法定代表人', value: formatValue(data.legalpersonname) },
|
|
|
|
|
- { label: '证件号码', value: formatValue(data.cardnum) },
|
|
|
|
|
- { label: '纳税人识别号', value: formatValue(data.taxpayernum) },
|
|
|
|
|
- { label: '营业执照', value: formatValue(getImgName(data.attachment1)), className: 'blue' },
|
|
|
|
|
- { label: '联系人', value: formatValue(data.contactname) },
|
|
|
|
|
- { label: '联系人手机号', value: formatValue(data.mobile) },
|
|
|
|
|
- { label: '联系电话', value: formatValue(data.telphone) },
|
|
|
|
|
- { label: '状态', value: getStatusName(data.status), className: 'green' },
|
|
|
|
|
- { label: '通讯地址', value: formatValue(data.address) },
|
|
|
|
|
- { label: '备注', value: formatValue(data.remark) },
|
|
|
|
|
- ];
|
|
|
|
|
- getDesList(isPersonal() ? person : company);
|
|
|
|
|
|
|
+ const data = props.selectedRow;
|
|
|
|
|
+ // 个人
|
|
|
|
|
+ const person = [
|
|
|
|
|
+ { label: '客户类型', value: '个人' },
|
|
|
|
|
+ { label: '姓名', value: formatValue(data.username) },
|
|
|
|
|
+ { label: '身份证号码', value: formatValue(data.cardnum) },
|
|
|
|
|
+ { label: '手机号码', value: formatValue(data.mobile) },
|
|
|
|
|
+ { label: '身份证正面照', value: formatValue(getImgName(data.cardfrontphotourl)), className: 'blue' },
|
|
|
|
|
+ { label: '身份证反面照', value: formatValue(getImgName(data.cardbackphotourl)), className: 'blue' },
|
|
|
|
|
+ { label: '邮箱', value: formatValue(data.email) },
|
|
|
|
|
+ { label: '联系电话', value: formatValue(data.telphone) },
|
|
|
|
|
+ { label: '通讯地址', value: formatValue(data.address) },
|
|
|
|
|
+ { label: '备注', value: formatValue(data.remark) },
|
|
|
|
|
+ ];
|
|
|
|
|
+ // 企业
|
|
|
|
|
+ const company = [
|
|
|
|
|
+ { label: '客户类型', value: '企业' },
|
|
|
|
|
+ { label: '企业名称', value: data.customername },
|
|
|
|
|
+ { label: '企业简称', value: formatValue(data.nickname) },
|
|
|
|
|
+ { label: '证件类型', value: getCardTypeEnumItemName(data.cardtype) },
|
|
|
|
|
+ { label: '法定代表人', value: formatValue(data.legalpersonname) },
|
|
|
|
|
+ { label: '证件号码', value: formatValue(data.cardnum) },
|
|
|
|
|
+ { label: '纳税人识别号', value: formatValue(data.taxpayernum) },
|
|
|
|
|
+ { label: '营业执照', value: formatValue(getImgName(data.cardfrontphotourl)), className: 'blue' },
|
|
|
|
|
+ { label: '联系人', value: formatValue(data.contactname) },
|
|
|
|
|
+ { label: '联系人手机号', value: formatValue(data.mobile) },
|
|
|
|
|
+ { label: '联系电话', value: formatValue(data.telphone) },
|
|
|
|
|
+ { label: '状态', value: getStatusName(data.status), className: 'green' },
|
|
|
|
|
+ { label: '通讯地址', value: formatValue(data.address) },
|
|
|
|
|
+ { label: '备注', value: formatValue(data.remark) },
|
|
|
|
|
+ ];
|
|
|
|
|
+ getDesList(isPersonal() ? person : company);
|
|
|
// }
|
|
// }
|
|
|
});
|
|
});
|
|
|
return {
|
|
return {
|