b3ee922f by lihua

Merge commit '5e38e5bf' into release

1 parent c96deb47
......@@ -301,8 +301,7 @@ const getTradeTableData = () => {
}).then((res: any) => {
tradeTableInfo.value.loading1 = false;
if (res.code == proxy.$passCode) {
let data = res.data || {};
tradeTableInfo.value.data = data || [];
tradeTableInfo.value.data = res.data || [];
} else {
ElMessage.error(res.msg);
}
......@@ -397,8 +396,7 @@ const getFinancingTableData = () => {
getApiInvokeCount(params).then((res: any) => {
financingTableInfo.value.loading1 = false;
if (res.code == proxy.$passCode) {
let data = res.data || {};
financingTableInfo.value.data = data || [];
financingTableInfo.value.data = res.data || [];
} else {
ElMessage.error(res.msg);
}
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!