123456789101112131415161718192021222324 |
- <template>
- <view class="content">
- <fxyk-navbar :isSearch="false" title="版本更新"/>
- <fxyk-cell class="u-m-t-54" title="当前版本" bgColor="#fff" :leftSlot="false" rightValue="V1.0.0" :arrow="false" />
- <fxyk-cell style="margin-top:31rpx" title="检测到最新版本" :leftSlot="false" bgColor="#fff" rightValue="V1.1.0" :arrow="false" />
- <fxyk-button style="margin-top:100rpx" content="更新" ></fxyk-button>
- </view>
- </template>
- <script>
- </script>
- <style lang="scss" scoped>
- page {
- width: 100%;
- height: 100%;
- }
- .content {
- width: 100%;
- height: 100%;
- min-height: 100vh;
- background-color: $yk-bg-color;
- }
- </style>
|