Files
tougao_web/src/components/page/ref_use.vue
xulu 4f5e6e1f78 1
2022-02-23 16:34:07 +08:00

57 lines
960 B
Vue
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>