1
This commit is contained in:
56
src/components/page/ref_use.vue
Normal file
56
src/components/page/ref_use.vue
Normal 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>
|
||||
Reference in New Issue
Block a user