smartmeter-app/pages/compoents/pages_my.vue
2023-12-05 16:45:28 +08:00

39 lines
709 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="view_body">
<u-navbar :is-back="false" title='学生' title-color="#000" :border-bottom="false" :background="true"
id="navbar">
</u-navbar>
<view class="nostudy">
<view>
<image src="http://tmp/HR4A5dtvNboB4502c7be9965e9ff4c184685e3fb36d9.png" mode=""></image>
<text>暂无学生快去添加吧</text>
</view>
<view>
<u-button type="primary">主要按钮</u-button>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.view_body{
height: 1624rpx;
background: linear-gradient(180deg, #E1EEFF 0%, #FFFFFF 100%);
}
</style>