mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-06-19 23:02:00 +08:00
46 lines
1.4 KiB
Vue
46 lines
1.4 KiB
Vue
<!-- 合同详情头部组件-->
|
||
<template>
|
||
<div>
|
||
<div class="flex items-start justify-between">
|
||
<div>
|
||
<el-col>
|
||
<el-row>
|
||
<span class="text-xl font-bold">{{ contract.name }}</span>
|
||
</el-row>
|
||
</el-col>
|
||
</div>
|
||
<div>
|
||
<!-- 右上:按钮 -->
|
||
<slot></slot>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<ContentWrap class="mt-10px">
|
||
<el-descriptions :column="5" direction="vertical">
|
||
<el-descriptions-item label="客户名称">
|
||
{{ contract.customerName }}
|
||
</el-descriptions-item>
|
||
<el-descriptions-item label="合同金额(元)">
|
||
{{ floatToFixed2(contract.price) }}
|
||
</el-descriptions-item>
|
||
<el-descriptions-item label="下单时间">
|
||
{{ contract.orderDate ? formatDate(contract.orderDate) : '空' }}
|
||
</el-descriptions-item>
|
||
<el-descriptions-item label="回款金额(元)">
|
||
{{ floatToFixed2(contract.price) }}
|
||
</el-descriptions-item>
|
||
<el-descriptions-item label="负责人">
|
||
{{ contract.ownerUserName }}
|
||
</el-descriptions-item>
|
||
</el-descriptions>
|
||
</ContentWrap>
|
||
</template>
|
||
<script lang="ts" setup>
|
||
import * as ContractApi from '@/api/crm/contract'
|
||
import { formatDate } from '@/utils/formatTime'
|
||
import { floatToFixed2 } from '@/utils'
|
||
|
||
defineOptions({ name: 'ContractDetailsHeader' })
|
||
defineProps<{ contract: ContractApi.ContractVO }>()
|
||
</script>
|