common-footer.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <view class="pages">
  3. <view class="common-footer">
  4. <view class="common-footer-company">
  5. <image src="/static/img/logo.png" class="img" mode="aspectFit"></image>
  6. <view class="text">
  7. 贵州省贵阳市观山湖区万达广场2F楼<br>贵州特色林产品体验中心
  8. </view>
  9. </view>
  10. <!-- <view class="common-footer-copyright">
  11. 备案/许可证编号:黔ICP备2020011568号
  12. </view> -->
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. name:'commonFooter',
  19. data() {
  20. return {
  21. params:{
  22. token:'',
  23. }
  24. }
  25. },
  26. onShow() {
  27. },
  28. onLoad() {
  29. },
  30. methods: {
  31. }
  32. }
  33. </script>
  34. <style scoped>
  35. /* @import url("./index.css"); */
  36. .common-footer{padding: 40rpx 24rpx 40rpx;background-color: #F6F7F8;text-align: center;}
  37. .common-footer-company{display: flex;align-items: center;justify-content: center;}
  38. .common-footer-company .img{width: 96rpx;height: 84rpx;margin-right: 54rpx;}
  39. .common-footer-company .text{position: relative;padding-left: 53rpx;font-size: 24rpx;color: #666;font-weight: 500;text-align: left;line-height: 33rpx;padding-left: 53rpx;}
  40. .common-footer-company .text::before{content: '';position: absolute;left: 0;top: 11rpx;width: 1px;height: 48rpx;background-color: #CFCFCF;}
  41. .common-footer-copyright{font-size: 24rpx;color: #999;line-height: 40rpx;font-weight: 400;}
  42. </style>