mirror of
https://github.com/jumpserver/lina.git
synced 2025-04-28 03:20:24 +00:00
perf: 优化计数卡
This commit is contained in:
parent
fa5f4348ea
commit
01d44bc84e
@ -8,12 +8,12 @@
|
||||
<slot>
|
||||
<h3 class="no-margins ">
|
||||
<span
|
||||
:class="{ 'can-direct': body.canDirect ? true : false }"
|
||||
:class="{ 'can-direct': canDirect }"
|
||||
class="num"
|
||||
@click="handleClick"
|
||||
>
|
||||
<span v-if="iCount === null"> - </span>
|
||||
<span v-else>{{ iCount }}</span>
|
||||
<span v-if="count === null"> - </span>
|
||||
<span v-else>{{ count }}</span>
|
||||
</span>
|
||||
</h3>
|
||||
</slot>
|
||||
@ -21,7 +21,6 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
name: 'SummaryCard',
|
||||
props: {
|
||||
@ -29,10 +28,6 @@ export default {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
body: {
|
||||
type: Object,
|
||||
default: () => ({})
|
||||
},
|
||||
count: {
|
||||
type: [Number, String, Promise],
|
||||
default: null
|
||||
@ -41,6 +36,10 @@ export default {
|
||||
type: [String, Object],
|
||||
default: ''
|
||||
},
|
||||
canDirect: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
callback: {
|
||||
type: Function,
|
||||
default: () => {
|
||||
@ -54,25 +53,13 @@ export default {
|
||||
data() {
|
||||
return {}
|
||||
},
|
||||
computed: {
|
||||
iCount() {
|
||||
const count = this.body.count || this.count
|
||||
return count
|
||||
},
|
||||
iRoute() {
|
||||
return this.body.route || this.route
|
||||
},
|
||||
iDisabled() {
|
||||
return this.body.disabled === undefined ? this.disabled : this.body.disabled
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
handleClick() {
|
||||
if (this.iDisabled) {
|
||||
if (this.disabled) {
|
||||
return
|
||||
}
|
||||
if (this.iRoute) {
|
||||
this.$router.push(this.iRoute)
|
||||
if (this.route) {
|
||||
this.$router.push(this.route)
|
||||
return
|
||||
}
|
||||
this.callback.bind(this)()
|
||||
|
@ -6,7 +6,7 @@
|
||||
<div class="content">
|
||||
<el-row justify="space-between" type="flex">
|
||||
<el-col v-for="item of summaryItems" :key="item.title" :md="8" :sm="12" :xs="12">
|
||||
<SummaryCard :body="item.body" :title="item.title" />
|
||||
<SummaryCard :title="item.title" v-bind="item.body" />
|
||||
</el-col>
|
||||
</el-row>
|
||||
</div>
|
||||
|
@ -7,9 +7,9 @@
|
||||
<SummaryCard
|
||||
v-for="item of items"
|
||||
:key="item.title"
|
||||
:body="item.body"
|
||||
:title="item.title"
|
||||
class="summary-card"
|
||||
v-bind="item.body"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<div class="content">
|
||||
<el-row justify="space-between" type="flex">
|
||||
<el-col v-for="item of summaryItems" :key="item.title" :md="8" :sm="12" :xs="12">
|
||||
<SummaryCard :body="item.body" :title="item.title" />
|
||||
<SummaryCard :title="item.title" v-bind="item.body" />
|
||||
</el-col>
|
||||
</el-row>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user