57 lines
960 B
Vue
57 lines
960 B
Vue
<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>
|