Files
hubez-admin/frontend/src/modules/custMgt/views/ChrgList.vue

47 lines
884 B
Vue

<template>
<div class="contents">
<div class="contents_wrap">
<div class="top_wrap">
<h3 class="title">충전관리</h3>
<p class="breadcrumb">고객관리 &gt; 청약고객관리 &gt; 충전관리</p>
</div>
<div class="top_tab">
<a href="javascript:void(0);" @click="toMove('subsList')">청약고객관리</a>
<a href="javascript:void(0);" @click="toMove('memberList')">회원관리</a>
<a href="javascript:void(0);" class="on">충전관리</a>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'chrgList',
data() {
return {
};
},
components: {
},
created() {
},
destroyed() {
},
mounted() {
},
methods: {
toMove(routeName) {
this.$router.push({name: routeName, params: {page: 1, searchText: ''}});
},
},
};
</script>