version.vue 647 B

123456789101112131415161718192021222324
  1. <template>
  2. <view class="content">
  3. <fxyk-navbar :isSearch="false" title="版本更新"/>
  4. <fxyk-cell class="u-m-t-54" title="当前版本" bgColor="#fff" :leftSlot="false" rightValue="V1.0.0" :arrow="false" />
  5. <fxyk-cell style="margin-top:31rpx" title="检测到最新版本" :leftSlot="false" bgColor="#fff" rightValue="V1.1.0" :arrow="false" />
  6. <fxyk-button style="margin-top:100rpx" content="更新" ></fxyk-button>
  7. </view>
  8. </template>
  9. <script>
  10. </script>
  11. <style lang="scss" scoped>
  12. page {
  13. width: 100%;
  14. height: 100%;
  15. }
  16. .content {
  17. width: 100%;
  18. height: 100%;
  19. min-height: 100vh;
  20. background-color: $yk-bg-color;
  21. }
  22. </style>