客户名称
- {{ tableData.name || '--' }}
+ {{ (scope.row.detailData && scope.row.detailData.name) || '--' }}
客户地址
- {{ tableData.address || '--' }}
+ {{ (scope.row.detailData && scope.row.detailData.address) || '--' }}
统一社会信用代码
- {{ tableData.identityCode || '--' }}
+ {{ (scope.row.detailData && scope.row.detailData.identityCode) || '--' }}
联系人
- {{ tableData.contact || '--' }}
+ {{ (scope.row.detailData && scope.row.detailData.contact) || '--' }}
电话
- {{ tableData.tel || '--' }}
+ {{ (scope.row.detailData && scope.row.detailData.tel) || '--' }}
邮箱
- {{ tableData.email || '--' }}
+ {{ (scope.row.detailData && scope.row.detailData.email) || '--' }}
开户行
- {{ tableData.bankName || '--' }}
+ {{ (scope.row.detailData && scope.row.detailData.bankName) || '--' }}
银行账号
- {{ tableData.bankAcc || '--' }}
+ {{ (scope.row.detailData && scope.row.detailData.bankAcc) || '--' }}
发票抬头
- {{ tableData.identityName || '--' }}
+ {{ (scope.row.detailData && scope.row.detailData.identityName) || '--' }}
发票联系电话
- {{ tableData.taxTel || '--' }}
+ {{ (scope.row.detailData && scope.row.detailData.taxTel) || '--' }}
发票地址
- {{ tableData.taxAddress || '--' }}
+ {{ (scope.row.detailData && scope.row.detailData.taxAddress) || '--' }}
纳税人识别号
- {{ tableData.taxpayerIdentity || '--' }}
+ {{ (scope.row.detailData && scope.row.detailData.taxpayerIdentity) || '--' }}