JinShan_uniapp/components/gx-copyright.vue
qiuyuan a4e47cde15 1
2025-08-09 18:41:07 +08:00

53 lines
1.0 KiB
Vue

<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>