app_tree_planting/components/page-foot.vue
2023-12-13 10:20:14 +08:00

41 lines
653 B
Vue
Raw Permalink 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="page-foot">
<view class="name">
数据来源乌兰察布市林业和草原局
</view>
<view class="phone">联系电话14747318104</view>
</view>
</template>
<script>
export default {
name: "page-foot",
data() {
return {
};
}
}
</script>
<style lang="scss">
.page-foot {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 24rpx;
color: #000;
width: 100%;
background-color: #ffffff;
box-shadow: 1px 2px 1px 2px #f5f5f5;
.name {
font-size: 24rpx;
}
.phone {
color: green;
}
}
</style>