feat: 新增三个主页卡片

pull/91/MERGE
raymond531 2023-03-30 18:17:41 +08:00
parent 6d9e49897e
commit aebbe11b70
6 changed files with 77 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 326 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

View File

@ -0,0 +1,23 @@
<template>
<el-card shadow="never" header="阿里云" class="item-background">
<img src="/image/card/ali.png" @click="Jump()" alt="阿里云" class="img-style">
</el-card>
</template>
<script>
export default {
title: '阿里云推广',
icon: 'el-icon-present',
description: '阿里云推广',
height: 15,
minH: 10,
width: 14,
minW: 10,
isResizable: true,
methods: {
Jump () {
window.open('https://www.aliyun.com/minisite/goods?userCode=jpef8a71&share_source=copy_link', '_black')
}
}
}
</script>

View File

@ -0,0 +1,23 @@
<template>
<el-card shadow="never" header="短信服务" class="item-background">
<img src="/image/card/sms.png" @click="Jump()" alt="短信服务" class="img-style">
</el-card>
</template>
<script>
export default {
title: '短信服务',
icon: 'el-icon-message',
description: '点击跳转到短信服务',
height: 10,
minH: 10,
width: 5,
minW: 5,
isResizable: true,
methods: {
Jump () {
window.open('https://bbs.django-vue-admin.com/plugMarket/128.html', '_black')
}
}
}
</script>

View File

@ -0,0 +1,31 @@
<template>
<el-card shadow="never" header="腾讯云" class="item-background">
<img src="/image/card/tencent.jpg" @click="Jump()" alt="腾讯云" class="img-style">
</el-card>
</template>
<script>
export default {
title: '腾讯云推广',
icon: 'el-icon-medal',
description: '腾讯云推广',
height: 10,
minH: 10,
width: 5,
isResizable: true,
methods: {
Jump () {
window.open('https://cloud.tencent.com/act/cps/redirect?redirect=1060&cps_key=b302a514a6688aa30823fac954464e5d&from=console', '_black')
}
}
}
</script>
<style>
.img-style {
cursor: pointer;
height: 180px;
display: block;
margin: auto;
}
</style>