app_tree_planting/components/page-foot.vue

41 lines
653 B
Vue
Raw Permalink Normal View History

2023-12-13 10:20:14 +08:00
<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>