Files
contract-review/front/src/components/contract-compare/ContractHeader.vue
2026-01-30 14:25:12 +08:00

37 lines
712 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>