Merge branch 'hi-ucs-dev' of http://124.222.94.39:3001/wuhongjian/hi-ucs into hi-ucs-dev

This commit is contained in:
guoyue 2022-06-30 13:52:06 +08:00
commit 10c21d5eac
2 changed files with 12 additions and 13 deletions

View File

@ -1,16 +1,16 @@
<template> <template>
<div class="content-title"> <div class="content-title">
<div> <div>{{ title }}</div>
{{ title }} <slot></slot>
</div>
</div> </div>
</template> </template>
<script> <script>
import contentTitle from "./content-title";
export default { export default {
name: "contentTitle", name: "contentTitle",
props: { props: {
title: String, title: String
}, },
}; };
</script> </script>
@ -20,8 +20,9 @@ export default {
height: 48px; height: 48px;
line-height: 48px; line-height: 48px;
font-size: 18px; font-size: 18px;
font-weight: bold; display: flex;
align-items: center;
justify-content: space-between;;
// color: #fff; // color: #fff;
} }
</style> </style>

View File

@ -45,14 +45,14 @@ export default {
}, },
{ {
title: "当前申请数", title: "当前申请数",
key: "activityName", key: "applyCount",
dataIndex: "activityName", dataIndex: "applyCount",
width: 115 width: 115
}, },
{ {
title: "调用数量", title: "调用数量",
key: "activityName", key: "visit",
dataIndex: "activityName", dataIndex: "visit",
width: 90 width: 90
} }
], ],
@ -78,9 +78,7 @@ export default {
if (res.data.code !== 0) { if (res.data.code !== 0) {
return; return;
} }
this.data = res.data.data.records || []; this.data = res.data.data.list || [];
console.log('this.data------------>', this.data);
}, },
err => { err => {
console.log("err", err); console.log("err", err);