feat: 首次提交

This commit is contained in:
peerless_hero
2023-08-17 21:28:49 +08:00
parent 36f80fb971
commit ec1e5e16cd
571 changed files with 95322 additions and 0 deletions

View File

@ -0,0 +1,95 @@
<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司手机号1 8 6 140 725 4 9身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任-->
<template>
<view class="fui-wrap fui-page__bd">
<fui-list-cell bottom-right="32" arrow v-for="(item,index) in logs" :key="index"
@click="detail(item.date,item.version)">
<view>
<view class="fui-title">First UI {{item.version}} 主要更新</view>
<view class="fui-date">{{item.date}}</view>
</view>
</fui-list-cell>
</view>
</template>
<script>
export default {
data() {
return {
logs: [{
date: '2023.07.17',
version: 'V2.0.0'
}, {
date: '2023.06.25',
version: 'V1.9.9'
}, {
date: '2023.05.29',
version: 'V1.9.8'
}, {
date: '2023.05.04',
version: 'V1.9.5'
}, {
date: '2023.04.04',
version: 'V1.9.1'
}, {
date: '2023.03.17',
version: 'V1.9.0'
}, {
date: '2023.01.31',
version: 'V1.8.0'
}, {
date: '2022.09.28',
version: 'V1.7.0'
}, {
date: '2022.06.26',
version: 'V1.6.0'
}, {
date: '2022.05.18',
version: 'V1.5.0'
}, {
date: '2022.03.16',
version: 'V1.4.0'
}, {
date: '2021.12.31',
version: 'V1.3.0'
}, {
date: '2021.11.22',
version: 'V1.2.0'
}, {
date: '2021.09.07',
version: 'V1.1.0'
}, {
date: '2021.08.02',
version: 'V1.0.0'
}]
}
},
methods: {
detail(date, version) {
this.fui.href(`../log/log?date=${date}&version=${version}`)
}
}
}
</script>
<style>
page {
background-color: #fff;
font-weight: normal;
padding-bottom: 64rpx;
}
.fui-wrap {
padding-top: 32rpx;
}
.fui-title {
font-size: 28rpx;
font-weight: 500;
}
.fui-date {
font-size: 24rpx;
color: #B2B2B2;
padding-top: 8rpx;
}
</style>