|
@@ -851,6 +851,7 @@ const openSettlementModal = (type, row) => {
|
|
|
remarks: null,
|
|
|
businessId: null,
|
|
|
exchangeSettlementDetailList: [],
|
|
|
+ transactionTime: "",
|
|
|
};
|
|
|
settlementModal.value = true;
|
|
|
};
|
|
@@ -868,10 +869,12 @@ const formData3 = reactive({
|
|
|
commissionCurrency: null,
|
|
|
remarks: null,
|
|
|
businessId: null,
|
|
|
+ transactionTime: null,
|
|
|
},
|
|
|
});
|
|
|
const submit3 = ref(null);
|
|
|
const settlementSubmitForm = () => {
|
|
|
+ console.log(formData3.data);
|
|
|
submit3.value.handleSubmit(() => {
|
|
|
if (!formData3.data.exchangeSettlementDetailList.length > 0) {
|
|
|
ElMessage({
|
|
@@ -1017,6 +1020,12 @@ const settlementFormConfig = computed(() => {
|
|
|
selectProp: "commissionCurrency",
|
|
|
},
|
|
|
{
|
|
|
+ type: "date",
|
|
|
+ itemType: "datetime",
|
|
|
+ label: "结汇时间",
|
|
|
+ prop: "transactionTime",
|
|
|
+ },
|
|
|
+ {
|
|
|
type: "input",
|
|
|
prop: "remarks",
|
|
|
label: "摘要",
|