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
|
| const url = window.location.origin + window.location.pathname
| let mobileDownloadConfig = {
| SoftwareConfig: {
| Name: "WI 水务智能助手",
| Desc: "工具",
| Icon: "./image/corpIcon.webp",
| DownPath: `${url}/static/phoneBak/WI水务智能助手.apk`,
|
| },
| FunctionalVersion: {
| Name: "当前功能",
| Version: "版本 v1.0",
| Time: "2024.11.26",
| Desc: "切换任意场景, 显示水情数据, 优化用户体验",
| },
|
| LocalInfo: {
| Preview: "预览",
| Images: [
| "./image/1.webp",
| "./image/2.webp",
| "./image/3.webp",
| "./image/4.webp",
| ],
| InformationData: [
| {
| infoTitle: "大小",
| infoContent: "5.62 MB",
| },
| {
| infoTitle: "类别",
| infoContent: "工具",
| },
| {
| infoTitle: "语言",
| infoContent: "简体中文",
| },
| {
| infoTitle: "年龄分级",
| infoContent: "17岁以上",
| },
| {
| infoTitle: "版权",
| infoContent: "归上海拉瓦锡卡文智能科技有限公司所有",
| },
| ],
| },
| };
|
|