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

View File

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