about.vue 815 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <view class="wrap">
  3. <view style="text-align: center;">
  4. <image class="logo" src="/static/img/logo.jpg" mode="widthFix"></image>
  5. <view class="version">alpha2020</view>
  6. <view class="bottom">
  7. <view>版权信息</view>
  8. <view>本项目遵循MIT开源协议,意味着您无需支付任何费用,也无需授权,即可将linjiashop-uniapp应用到您的产品中</view>
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. }
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style lang="scss" scoped>
  24. .logo {
  25. margin-top:50rpx;
  26. width: 300rpx;
  27. height: 300rpx;
  28. }
  29. .version {
  30. margin-top: 30rpx;
  31. color: $u-light-color
  32. }
  33. .bottom {
  34. position: absolute;
  35. bottom: 100rpx;
  36. width: 100%;
  37. line-height: 2;
  38. color: $u-light-color;
  39. }
  40. </style>