00138c2a by xukangle

Merge branch 'release-test' of http://117.78.60.236:8000/csbr-daop/fe-data-asset…

…-management into release-test
2 parents c2ceee59 33e9508e
......@@ -7,7 +7,7 @@ const routes: RouteRecordRaw[] = [
path: '/data-asset-index',
component: Layout,
meta: {
title: '首页',
title: '数据资产看板',
icon: 'sidebar-videos',
},
children: [{
......@@ -15,7 +15,7 @@ const routes: RouteRecordRaw[] = [
name: 'assetIndex',
component: () => import('@/views/indexNewBigScreen.vue'),
meta: {
title: '首页',
title: '数据资产看板',
sidebar: false,
breadcrumb: false,
cache: true
......
......@@ -336,20 +336,30 @@ const financingTableInfo = ref({
{
label: "产品名称",
field: "apiName",
width: 140,
width: 150,
// type: "text_btn",
// columClass: 'text_btn',
// value: "detail",
},
{ label: "调用数", field: "callApiNumber", width: 100, align: "right", },
{ label: "调用数", field: "callApiNumber", width: 130, align: "left", getName: (scope) => {
let callApiNumber = scope.row.callApiNumber;
if (!callApiNumber) {
return `调用数0`
}
return `调用数${changeNum(callApiNumber, 0)}`
} },
{
label: "调用次数",
field: "callApiCount",
width: 100,
align: "right",
// getName: (scope) => {
// return changeNum(scope.row.creditGrantingMoney ?? 0, 2, true) + '万元';
// },
minWidth: 120,
align: "left",
getName: (scope) => {
let callApiCount = scope.row.callApiCount;
if (!callApiCount) {
return `调用0次`
}
return `调用${changeNum(callApiCount, 0)}次`
},
},
// {
// label: "授信期限(月)",
......@@ -360,7 +370,7 @@ const financingTableInfo = ref({
// return changeNum(scope.row.creditGrantingTerm ?? 0) + '月';
// },
// },
{ label: "最近调用时间", field: "invokeStartTime", minWidth: 100 },
// { label: "最近调用时间", field: "invokeStartTime", minWidth: 100 },
],
data: [],
showPage: false,
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!