pull/853/head
wersd 2025-06-20 22:48:42 +08:00
parent b1cf66d93a
commit 7ef6ad19ff
3 changed files with 35 additions and 0 deletions

View File

@ -9,6 +9,10 @@ export interface FollowUpRecordVO {
id: number // 客户编号 id: number // 客户编号
name: string // 客户名称 name: string // 客户名称
} }
stationSite:{
id: number // 场地编号
name: string // 场地名称
}
type: number // 跟进类型 type: number // 跟进类型
content: string // 跟进内容 content: string // 跟进内容
picUrls: string[] // 图片 picUrls: string[] // 图片

View File

@ -27,6 +27,7 @@ export interface StationSiteVO {
fileUrls?: string // 附件 fileUrls?: string // 附件
parkingSpaces: number // 车位数 parkingSpaces: number // 车位数
rentPrice: number // 租金价格 rentPrice: number // 租金价格
lastFollowTime?: number // 未跟进天数
creator: string // 填报人 creator: string // 填报人
params: string // 参数 params: string // 参数
} }

View File

@ -0,0 +1,30 @@
<!-- 跟进记录页面 -->
<template>
<div class="followup-page-container">
<FollowUpList :biz-type="bizType" :biz-id="bizId" />
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue'
import FollowUpList from './components/FollowUpList.vue'
export default defineComponent({
name: 'CrmStationFollowUpPage',
components: { FollowUpList },
data() {
return {
bizType: 9,
bizId: undefined as number | undefined
}
}
})
</script>
<style scoped>
.followup-page-container {
padding: 24px;
background: #f5f7fa;
min-height: 100vh;
}
</style>