|
@@ -493,6 +493,32 @@ const formConfig = reactive([
|
|
|
disabled: true,
|
|
|
},
|
|
|
{
|
|
|
+ type: "number",
|
|
|
+ prop: "amountCny",
|
|
|
+ label: "转人民金额",
|
|
|
+ itemWidth: 30,
|
|
|
+ disabled: true,
|
|
|
+ precision: 2,
|
|
|
+ controls: false,
|
|
|
+ min: 0,
|
|
|
+ style: {
|
|
|
+ width: "100%",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "number",
|
|
|
+ prop: "rate",
|
|
|
+ label: "汇率",
|
|
|
+ itemWidth: 30,
|
|
|
+ disabled: true,
|
|
|
+ precision: 2,
|
|
|
+ controls: false,
|
|
|
+ min: 0,
|
|
|
+ style: {
|
|
|
+ width: "100%",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
type: "title",
|
|
|
title: "认领信息",
|
|
|
},
|
|
@@ -589,6 +615,7 @@ const getDtl = (row) => {
|
|
|
accountManagementId: row.accountManagementId,
|
|
|
accountManagementName: row.accountManagementName,
|
|
|
claimTime: row.transactionTime,
|
|
|
+ amountCny: row.amountCny,
|
|
|
claimContractList: [],
|
|
|
rate: rowRate.value,
|
|
|
};
|
|
@@ -757,4 +784,7 @@ const clickRecord = (row) => {
|
|
|
.tenant {
|
|
|
padding: 20px;
|
|
|
}
|
|
|
+::v-deep(.el-input-number .el-input__inner) {
|
|
|
+ text-align: left;
|
|
|
+}
|
|
|
</style>
|