Browse Source
* [DS-6655][fix] remove zkmonitor - delete zkmonitor ui * [DS-6655][fix] remove zkmonitor - delete zkmonitor ui - Modify the actions.js comma * [DS-6655][fix] remove zkmonitor - remove all backend API Co-authored-by: Kirs <acm_master@163.com>3.0.0/version-upgrade
罗铭涛
3 years ago
committed by
GitHub
10 changed files with 0 additions and 157 deletions
@ -1,67 +0,0 @@ |
|||||||
/* |
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
|
||||||
* contributor license agreements. See the NOTICE file distributed with |
|
||||||
* this work for additional information regarding copyright ownership. |
|
||||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
|
||||||
* (the "License"); you may not use this file except in compliance with |
|
||||||
* the License. You may obtain a copy of the License at |
|
||||||
* |
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0 |
|
||||||
* |
|
||||||
* Unless required by applicable law or agreed to in writing, software |
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS, |
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
||||||
* See the License for the specific language governing permissions and |
|
||||||
* limitations under the License. |
|
||||||
*/ |
|
||||||
<template> |
|
||||||
<m-list-construction :title="'Zookeeper ' + $t('Manage')"> |
|
||||||
<template slot="content"> |
|
||||||
<template v-if="zookeeperList.length"> |
|
||||||
<m-list :list="zookeeperList"></m-list> |
|
||||||
</template> |
|
||||||
<template v-if="!zookeeperList.length"> |
|
||||||
<m-no-data></m-no-data> |
|
||||||
</template> |
|
||||||
<m-spin :is-spin="isLoading" ></m-spin> |
|
||||||
</template> |
|
||||||
</m-list-construction> |
|
||||||
</template> |
|
||||||
<script> |
|
||||||
import { mapActions } from 'vuex' |
|
||||||
import mList from './_source/zookeeperList' |
|
||||||
import mSpin from '@/module/components/spin/spin' |
|
||||||
import mNoData from '@/module/components/noData/noData' |
|
||||||
import mListConstruction from '@/module/components/listConstruction/listConstruction' |
|
||||||
|
|
||||||
export default { |
|
||||||
name: 'servers-zookeeper', |
|
||||||
data () { |
|
||||||
return { |
|
||||||
isLoading: false, |
|
||||||
zookeeperList: [] |
|
||||||
} |
|
||||||
}, |
|
||||||
props: {}, |
|
||||||
methods: { |
|
||||||
...mapActions('monitor', ['getZookeeperData']) |
|
||||||
}, |
|
||||||
watch: {}, |
|
||||||
created () { |
|
||||||
this.isLoading = true |
|
||||||
this.getZookeeperData().then(res => { |
|
||||||
this.zookeeperList = res |
|
||||||
this.isLoading = false |
|
||||||
}).catch(() => { |
|
||||||
this.isLoading = false |
|
||||||
}) |
|
||||||
}, |
|
||||||
mounted () { |
|
||||||
|
|
||||||
}, |
|
||||||
components: { mList, mListConstruction, mSpin, mNoData } |
|
||||||
} |
|
||||||
</script> |
|
||||||
<style lang="scss" rel="stylesheet/scss"> |
|
||||||
@import "./servers"; |
|
||||||
</style> |
|
Loading…
Reference in new issue