41 lines
653 B
Vue
41 lines
653 B
Vue
<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> |