feat:v1.4前端更新

This commit is contained in:
超凡
2025-06-24 14:43:09 +08:00
parent 6282774be5
commit 3202f42aac
1026 changed files with 118424 additions and 56490 deletions

View File

@@ -0,0 +1,48 @@
<template>
<view class="copyRight-box" v-if="copyRightInfo">
<view>
<text @click="toIcp">{{copyRightInfo.copyrightIcpNumber}}</text>
</view>
<view class="bottom mt10" @click="toInternet">
<text>{{copyRightInfo.copyrightInternetRecord}}</text>
</view>
</view>
</template>
<script>
import {getConfigCopyright} from '@/api/api.js'
export default{
data(){
return{
copyRightInfo:null
}
},
mounted() {
this.getCopyright()
},
methods:{
getCopyright(){
getConfigCopyright().then(res=>{
this.copyRightInfo=res.data
})
},
toIcp(){
window.open(this.copyRightInfo.copyrightIcpNumberUrl)
},
toInternet(){
window.open(this.copyRightInfo.copyrightInternetRecordUrl)
},
}
}
</script>
<style lang="scss" scoped>
.copyRight-box{
padding: 40rpx 0;
text-align: center;
text{
color: #666;
font-size: 24rpx;
}
}
</style>