37 lines
712 B
Vue
37 lines
712 B
Vue
<script lang="ts">
|
||
import { defineComponent } from 'vue';
|
||
|
||
export default defineComponent({
|
||
name: 'ContractHeader'
|
||
});
|
||
</script>
|
||
|
||
<template>
|
||
<div class="header">
|
||
<h1>合同对比分析系统</h1>
|
||
<p class="subtitle">智能识别合同差异,快速定位关键变更</p>
|
||
</div>
|
||
</template>
|
||
|
||
<style lang="scss" scoped>
|
||
.header {
|
||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||
padding: 20px 24px;
|
||
color: white;
|
||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
||
|
||
h1 {
|
||
margin: 0 0 8px 0;
|
||
color: white;
|
||
font-size: 24px;
|
||
font-weight: 600;
|
||
}
|
||
.subtitle {
|
||
margin: 0;
|
||
color: rgba(255, 255, 255, 0.9);
|
||
font-size: 14px;
|
||
font-weight: 400;
|
||
}
|
||
}
|
||
</style>
|