mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-11 17:48:09 +08:00
commit
This commit is contained in:
36
jsowell-ui/src/views/pile/station/components/amend.vue
Normal file
36
jsowell-ui/src/views/pile/station/components/amend.vue
Normal file
@@ -0,0 +1,36 @@
|
||||
<template>
|
||||
<!-- 修改默认费率 -->
|
||||
<div>
|
||||
<el-tabs v-model="activeName" type="card" @tab-click="handleClick">
|
||||
<el-tab-pane label="基本信息" name="first">
|
||||
<!-- 基本信息 -->
|
||||
</el-tab-pane>
|
||||
<el-tab-pane label="电动汽车(按电量)" name="second">
|
||||
<Car />
|
||||
</el-tab-pane>
|
||||
<el-tab-pane label="电动单车(按功率时长)" name="third">
|
||||
<Electromobile />
|
||||
</el-tab-pane>
|
||||
</el-tabs>
|
||||
</div>
|
||||
|
||||
</template>
|
||||
<script>
|
||||
import Car from './amend/car.vue'
|
||||
import Electromobile from './amend/electromobile.vue'
|
||||
|
||||
export default {
|
||||
components: { Car, Electromobile },
|
||||
|
||||
data() {
|
||||
return {
|
||||
activeName: 'first'
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
handleClick(tab, event) {
|
||||
console.log(tab, event)
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user