common-footer.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. 贵州省黔林优选<br>
  8. 商贸有限公司
  9. </view>
  10. </view>
  11. <view class="common-footer-copyright">
  12. 地址:贵州省贵阳市观山湖万达广场室内步行街2F层2016、2017号<br>备案/许可证编号:黔ICP备2020011568号
  13. </view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. name:'commonFooter',
  20. data() {
  21. return {
  22. params:{
  23. token:'',
  24. }
  25. }
  26. },
  27. onShow() {
  28. },
  29. onLoad() {
  30. },
  31. methods: {
  32. }
  33. }
  34. </script>
  35. <style scoped>
  36. /* @import url("./index.css"); */
  37. .common-footer{padding: 16rpx 24rpx 40rpx;background-color: #F6F7F8;text-align: center;}
  38. .common-footer-company{display: flex;margin-bottom: 24rpx;align-items: center;justify-content: center;}
  39. .common-footer-company .img{width: 96rpx;height: 84rpx;margin-right: 54rpx;}
  40. .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;}
  41. .common-footer-company .text::before{content: '';position: absolute;left: 0;top: 11rpx;width: 1px;height: 48rpx;background-color: #CFCFCF;}
  42. .common-footer-copyright{font-size: 24rpx;color: #999;line-height: 40rpx;font-weight: 400;}
  43. </style>