54 lines
1.6 KiB
Vue
54 lines
1.6 KiB
Vue
<template>
|
|
<view>
|
|
<basics v-if="PageCur=='basics'"></basics>
|
|
<components v-if="PageCur=='component'"></components>
|
|
<plugin v-if="PageCur=='plugin'"></plugin>
|
|
<about v-if="PageCur=='about'"></about>
|
|
<view class="cu-bar tabbar bg-white shadow foot">
|
|
<view class="action" @click="NavChange" data-cur="basics">
|
|
<view class='cuIcon-cu-image'>
|
|
<image :src="'/static/tabbar/basics' + [PageCur=='basics'?'_cur':''] + '.png'"></image>
|
|
</view>
|
|
<view :class="PageCur=='basics'?'text-cyan':'text-gray'">首页</view>
|
|
</view>
|
|
<view class="action" @click="NavChange" data-cur="component">
|
|
<view class='cuIcon-cu-image'>
|
|
<image :src="'/static/tabbar/component' + [PageCur == 'component'?'_cur':''] + '.png'"></image>
|
|
</view>
|
|
<view :class="PageCur=='component'?'text-cyan':'text-gray'">科室列表</view>
|
|
</view>
|
|
<view class="action" @click="NavChange" data-cur="plugin">
|
|
<view class='cuIcon-cu-image'>
|
|
<image :src="'/static/tabbar/plugin' + [PageCur == 'plugin'?'_cur':''] + '.png'"></image>
|
|
</view>
|
|
<view :class="PageCur=='plugin'?'text-cyan':'text-gray'">设备列表</view>
|
|
</view>
|
|
<view class="action" @click="NavChange" data-cur="about">
|
|
<view class='cuIcon-cu-image'>
|
|
<image :src="'/static/tabbar/about' + [PageCur == 'about'?'_cur':''] + '.png'"></image>
|
|
</view>
|
|
<view :class="PageCur=='about'?'text-cyan':'text-gray'">人员列表</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
PageCur: 'basics'
|
|
}
|
|
},
|
|
methods: {
|
|
NavChange: function(e) {
|
|
this.PageCur = e.currentTarget.dataset.cur
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|