|
|
|
|
@ -46,6 +46,15 @@
|
|
|
|
|
<el-descriptions-item label="税号">{{ customerInfo?.taxNumber || '-' }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="开户银行">{{ customerInfo?.bankAccountOpening || '-' }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="银行账号">{{ customerInfo?.bankNumber || '-' }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="开票附件" :span="3">
|
|
|
|
|
<FileUpload
|
|
|
|
|
v-if="customerInfo?.ossId"
|
|
|
|
|
:model-value="String(customerInfo.ossId)"
|
|
|
|
|
disabled
|
|
|
|
|
:is-show-tip="false"
|
|
|
|
|
/>
|
|
|
|
|
<span v-else>-</span>
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="备注" :span="3">{{ customerInfo?.remark || '-' }}</el-descriptions-item>
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
<el-empty v-else description="暂无客户信息" class="empty-state" />
|
|
|
|
|
@ -113,6 +122,7 @@ import { getCustomerInfo } from '@/api/oa/crm/customerInfo';
|
|
|
|
|
import { CustomerInfoVO } from '@/api/oa/crm/customerInfo/types';
|
|
|
|
|
import { listCustomerContact } from '@/api/oa/crm/customerContact';
|
|
|
|
|
import { CustomerContactVO } from '@/api/oa/crm/customerContact/types';
|
|
|
|
|
import FileUpload from '@/components/FileUpload/index.vue';
|
|
|
|
|
|
|
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
|
|
|
const route = useRoute();
|
|
|
|
|
|