|
|
@@ -16,7 +16,7 @@
|
|
|
<fieldset class="formFieldSet">
|
|
|
<legend>融资信息</legend>
|
|
|
<Des :list="desList" />
|
|
|
-</fieldset>
|
|
|
+ </fieldset>
|
|
|
<fieldset class="formFieldSet">
|
|
|
<legend>还款信息</legend>
|
|
|
<div class="tableDatas tableContextCenter">
|
|
|
@@ -41,7 +41,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";
|
|
|
+import Long from 'long';
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: 'platinum_financing_information_detail',
|
|
|
@@ -204,7 +204,7 @@ export default defineComponent({
|
|
|
const person = [
|
|
|
{ label: '账号', value: formatValue(data.logincode) },
|
|
|
{ label: '名称', value: formatValue(data.username) },
|
|
|
- { label: '账户类型', value: formatValue(data.userinfotype === 1 ? "个人" : "企业" ) },
|
|
|
+ { label: '账户类型', value: formatValue(data.userinfotype === 1 ? '个人' : '企业') },
|
|
|
{ label: '商品', value: formatValue(data.goodsname) },
|
|
|
{ label: '价格', value: formatValue(data.tradeprice) },
|
|
|
{ label: '数 量', value: formatValue(data.wrqty) },
|
|
|
@@ -216,7 +216,7 @@ export default defineComponent({
|
|
|
];
|
|
|
getDesList(person);
|
|
|
const param: QueryContractLogReq = {
|
|
|
- scfcontractid: Long.fromString(data.scfcontractid),
|
|
|
+ scfcontractid: data.scfcontractid,
|
|
|
};
|
|
|
queryTable(queryContractLog, param);
|
|
|
}
|