44 lines
731 B
Vue
44 lines
731 B
Vue
<template>
|
|
<view>
|
|
<view class="home" @tap='gointegration'>
|
|
<image src="@/static/zhaohufangan.png" mode=""></image>
|
|
<view class="name">
|
|
一体化照护方案
|
|
</view>
|
|
</view>
|
|
<view class="home" @tap='gonurseRecord'>
|
|
<image src="@/static/zhaohujilu.png" mode=""></image>
|
|
<view class="name">
|
|
照护记录
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
},
|
|
methods: {
|
|
//照护方案
|
|
gointegration() {
|
|
uni.navigateTo({
|
|
url: '/pagesC/integration/integration'
|
|
})
|
|
},
|
|
// 照护记录
|
|
gonurseRecord() {
|
|
uni.navigateTo({
|
|
url: '/pagesC/nurseRecord/nurseRecord'
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
</style> |