|
|
@@ -65,11 +65,10 @@ export default defineComponent({
|
|
|
{ label: '合同编号', value: formatValue(data.contractno) },
|
|
|
{ label: '合同类型', value: getContractTypeName(data.contracttype) },
|
|
|
{ label: '业务类型', value: getBizTypeName(data.biztype) },
|
|
|
- { label: '采购方', value: formatValue(data.buyusername) },
|
|
|
- { label: '销售方', value: formatValue(data.sellusername) },
|
|
|
+ { label: data.contracttype === 1 ? '销售方' : '采购方', value: formatValue(data.contracttype === 1 ? data.sellusername : data.buyusername) },
|
|
|
+ { label: data.contracttype === 1 ? '采购方' : '销售方', value: formatValue(data.subjectname) },
|
|
|
{ label: '合同附件', value: formatValue(getImgName(data.attachment)) },
|
|
|
{ label: '状态', value: getContractStatusName(data.contracctstatus), className: 'green' },
|
|
|
- //{ label: "交易主体", value: formatValue(data.subjectname) }
|
|
|
];
|
|
|
getBaseInfo(base);
|
|
|
// 现货信息
|