first commit

This commit is contained in:
2026-01-30 14:25:12 +08:00
commit 8dd8d2668a
899 changed files with 90844 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<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>