tj
2025-03-17 0b058116985f0b3415f01c69c1735e1f6a7b51ea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// 首页轮播图
export interface CarouselItem {
  url: string;
  title: string;
  content: string;
}
 
 
//   我们的产品
export interface Products {
  imgUrl: string;
  title: string;
  desc: string;
}
 
// 新增接口来表示产品组
export interface ProductGroup {
  products: Products[];
}
 
//   合作过的客户
export interface CooperativeClient {
  url: string;
  name: string;
  desc: string;
}
 
//   产品中心
export interface ProductCenter {
  url: string;
  name: string;
  desc: string;
}
 
// 公司基本信息
export interface CompanyInfo {
  logo: string; // logo
  name: string; // 公司名称
  desc: string; // 公司描述
  address: string; // 公司地址
  wechat: string;
  phoneHotList: Array<string>; // 热线
  phoneSaleAfterList: Array<string>; // 售后电话
  qrCodeList: Array<CompanyQrCodeInfo>; // 二维码
}
 
 
// 公司二维码信息
export interface CompanyQrCodeInfo {
  url: string; // logo
  name: string; // 公司名称
}
 
 
// 产品中心-菜单
export interface MenuItem {
  index: string;
  title: string;
  imgUrl: string;
  pdfUrl: string;
  icon?: any;
  subMenu?: MenuItem[];
}