This commit is contained in:
xulu
2022-02-23 16:34:07 +08:00
parent ec5e69418b
commit 4f5e6e1f78
62 changed files with 28419 additions and 8571 deletions

View File

@@ -0,0 +1,56 @@
<template>
<div>
<el-card class="box-card ref_card">
<div style="float: left;width: 340px;">
<h2 style="font-size: 40px;border-bottom: 3px solid #000;display: inline-block;padding: 100px 0 15px 0;">Thank you.</h2>
<h3 style="font-size: 20px;margin: 15px 0 0 0;">Thank you all the same. <br>We expect our next cooperation.</h3>
</div>
<div style="float: right;">
<img src="../../assets/img/refu.png" alt="" style="width: 380px;margin: 20px 10px 0 0;">
</div>
</el-card>
</div>
</template>
<script>
export default {
data() {
return {
};
},
mounted() {
},
created() {
this.getData();
},
methods: {
// 获取数据
getData() {
},
},
computed: {
},
watch: {
}
};
</script>
<style scoped>
.ref_card {
width: 800px;
height: 400px;
padding: 20px;
position: fixed;
left: 50%;
top: 50%;
margin-top: -220px;
margin-left: -420px;
/* text-align: center; */
}
</style>