This commit is contained in:
qiuyuan 2025-08-09 18:41:07 +08:00
parent 73e46f8ec1
commit a4e47cde15
2 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,53 @@
<template>
<view class="copyright-section">
<view class="copyright-content">
<text style="color: #ddd;padding-right: 20rpx;"></text>
<image src="/static/imgs/index/logo.png" class="logo" mode="aspectFit"></image>
<!-- <view class="divider"></view> -->
<text class="copyright-text">
提供技术支持
</text>
<text style="color: #ddd;padding-left: 20rpx;"></text>
</view>
</view>
</template>
<script>
export default {
name: 'gx-copyright'
}
</script>
<style lang="scss" scoped>
.copyright-section {
width: 100%;
padding: 30rpx 0;
// background-color: #f8faff;
.copyright-content {
display: flex;
align-items: center;
justify-content: center;
.logo {
width: 150rpx;
height: 50rpx;
margin-right: 0rpx;
}
.divider {
width: 1rpx;
height: 30rpx;
background-color: #ddd;
margin: 0 20rpx;
}
.copyright-text {
font-size: 24rpx;
color: #999;
padding-left: 20rpx;
}
}
}
</style>

BIN
static/imgs/index/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB