|
|
@@ -114,6 +114,7 @@ import { closeModal } from '@/common/setup/modal';
|
|
|
import { queryTableList } from '@/common/export/table';
|
|
|
import { QhjContract, QueryContractLogReq } from '@/services/go/ermcp/qhj/interface';
|
|
|
import { queryContractLog } from '@/services/go/ermcp/qhj';
|
|
|
+import Long from "long";
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: 'platinum_financing_information_detail',
|
|
|
@@ -276,7 +277,7 @@ export default defineComponent({
|
|
|
const person = [
|
|
|
{ label: '账号', value: formatValue(data.logincode) },
|
|
|
{ label: '名称', value: formatValue(data.username) },
|
|
|
- { label: '账户类型', value: formatValue(data.regularlymodevalue) },
|
|
|
+ { label: '账户类型', value: formatValue(data.userinfotype === 1 ? "个人" : "企业" ) },
|
|
|
{ label: '商品', value: formatValue(data.goodsname) },
|
|
|
{ label: '价格', value: formatValue(data.tradeprice) },
|
|
|
{ label: '数 量', value: formatValue(data.wrqty) },
|
|
|
@@ -288,7 +289,7 @@ export default defineComponent({
|
|
|
];
|
|
|
getDesList(person);
|
|
|
const param: QueryContractLogReq = {
|
|
|
- scfcontractid: data.scfcontractid,
|
|
|
+ scfcontractid: Long.fromString(data.scfcontractid),
|
|
|
};
|
|
|
queryTable(queryContractLog, param);
|
|
|
}
|