fix:修改二维码图片

This commit is contained in:
zouzhibing 2023-02-01 11:16:56 +08:00
parent 1361525f95
commit 5d8383c519
3 changed files with 9 additions and 4 deletions

BIN
src/assets/image/we.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 KiB

View File

@ -3,11 +3,15 @@
<div class="app-container-inner"> <div class="app-container-inner">
<div style="margin-bottom: 20px">欢迎大家加微信哈共同讨论学习</div> <div style="margin-bottom: 20px">欢迎大家加微信哈共同讨论学习</div>
<el-image <el-image
src="http://182.61.5.190:8889/we.png" :src="weLogo"
:preview-src-list="['http://182.61.5.190:8889/we.png']" :preview-src-list="[weLogo]"
style="max-width: 200px" style="max-width: 200px"
:data-resid="Date.now()" :data-resid="Date.now()"
/> />
</div> </div>
</div> </div>
</template> </template>
<script lang="ts" setup>
import weLogo from '@/assets/image/we.png'
</script>

View File

@ -5,8 +5,8 @@
<el-card class="box-card" style="height: 100%"> <el-card class="box-card" style="height: 100%">
<el-image <el-image
class="wechat" class="wechat"
src="http://182.61.5.190:8889/we.png" :src="weLogo"
:preview-src-list="['http://182.61.5.190:8889/we.png']" :preview-src-list="[weLogo]"
style="max-width: 200px" style="max-width: 200px"
:data-resid="Date.now()" :data-resid="Date.now()"
/> />
@ -163,6 +163,7 @@
import { User } from '@element-plus/icons-vue' import { User } from '@element-plus/icons-vue'
import { ref } from 'vue' import { ref } from 'vue'
import AvatarLogo from '@/assets/image/avatar.png' import AvatarLogo from '@/assets/image/avatar.png'
import weLogo from '@/assets/image/we.png'
import CountTo from '@/components/CountTo/index.vue' import CountTo from '@/components/CountTo/index.vue'
import BarCharts from '@/views/echarts/simple/components/bar.vue' import BarCharts from '@/views/echarts/simple/components/bar.vue'