Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
J
jump_hm_warehouse
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Members
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
毛勇泽
jump_hm_warehouse
Commits
b92e43b5
Commit
b92e43b5
authored
Jan 16, 2024
by
huangqy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
说明的模块
parent
95731976
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
103 行增加
和
0 行删除
+103
-0
BurnerDescription.ets
entry/src/main/ets/pages/sub_systemMaintenance/BurnerDescription.ets
+75
-0
Premiere.ets
entry/src/main/ets/pages/sub_systemMaintenance/Premiere.ets
+23
-0
main_pages.json
entry/src/main/resources/base/profile/main_pages.json
+3
-0
shuoming.jpg
entry/src/main/resources/rawfile/system/shuoming.jpg
+0
-0
UniInitList.ets
features/SystemMaintenance/src/main/ets/model/UniInitList.ets
+2
-0
没有找到文件。
entry/src/main/ets/pages/sub_systemMaintenance/BurnerDescription.ets
0 → 100644
View file @
b92e43b5
import { TitleBar } from '../../view/title/TitleBar'
@Entry
@Component
export struct BurnerDescription {
build() {
Column() {
TitleBar({ title: "刻录机说明" })
Flex({ direction: FlexDirection.Column }) {
Column() {
Text('仓库作业刻录机说明').fontSize(20).fontWeight(700).fontColor('rgb(51, 51, 51)')
}.width('100%').padding({ top:8, bottom: 8})
Row() {
Text('1.读取光盘中文件').fontSize(16).fontWeight(700).fontColor('rgb(51, 51, 51)')
}.width('100%').padding({ top:8, bottom: 8})
Row() {
Text('第一步,将刻录机连接手持机').fontSize(14).fontWeight(700).fontColor('rgb(51, 51, 51)')
}.width('100%').padding({ top:8, bottom: 8})
Row() {
Text('第二步,打开手持机中刻录APP,在手持机中找到图标为的软件,点击图标进入APP.')
.fontSize(14).fontWeight(700).fontColor('rgb(51, 51, 51)')
}.width('100%').padding({ top:8, bottom: 8})
Row() {
Text('第三步,文件复制到手持机中').fontSize(14).fontWeight(700).fontColor('rgb(51, 51, 51)')
}.width('100%').padding({ top:8, bottom: 8})
Column() {
Row() {
Text('①进入光盘目录,刻录机连接手持机后,在DISCLINK(刻录APP)中默认展示的是光盘内容。').fontSize(14)
}.width('100%').padding({ top:4, bottom: 4})
Row() {
Text('②选择要导入手持机的文件,当文件后方√高亮代表选中。').fontSize(14)
}.width('100%').padding({ top:4, bottom: 4})
Row() {
Text('③复制文件到手持机,选中后点击右下角“+”,会弹出两个选项删除、复制,选择复制按钮,在弹出界面中选择存放目录,建议存放在Download目录下').fontSize(14)
}.width('100%').padding({ top:4, bottom: 4})
}
Row() {
Text('2.刻录文件到光盘中').fontSize(16).fontWeight(700).fontColor('rgb(51, 51, 51)')
}.width('100%').padding({ top:8, bottom: 8})
Row() {
Text('第一步,将刻录机连接手持机').fontSize(14).fontWeight(700).fontColor('rgb(51, 51, 51)')
}.width('100%').padding({ top:8, bottom: 8})
Row() {
Text('第二步,打开手持机中刻录APP,在手持机中找到图标为的软件,点击图标进入APP')
.fontSize(14).fontWeight(700).fontColor('rgb(51, 51, 51)')
}.width('100%').padding({ top:8, bottom: 8})
Row() {
Text('第三步,刻录文件').fontSize(14).fontWeight(700).fontColor('rgb(51, 51, 51)')
}.width('100%').padding({ top:8, bottom: 8})
Column() {
Row() {
Text('①选择DISCLINK(刻录APP)资料备份页面。').fontSize(14)
}.width('100%').padding({ top:4, bottom: 4})
Row() {
Text('②选择刻录文件,选择左上角图标为按钮,在弹框中选择文件。').fontSize(14)
}.width('100%').padding({ top:4, bottom: 4})
Row() {
Text('③刻录文件,点击右下角“+”按钮,选择数据备份按钮,进行刻录文件。').fontSize(14)
}.width('100%').padding({ top:4, bottom: 4})
}
}.backgroundColor('#fff').borderRadius(5).padding(6)
}.padding(10)
.linearGradient({
direction: GradientDirection.RightBottom,
repeating: true,
colors: [['#36a3c0', 0.0], ['#97c6a6', 1.0], ['#c7d799', 2.0]]
})
}
}
\ No newline at end of file
entry/src/main/ets/pages/sub_systemMaintenance/Premiere.ets
0 → 100644
View file @
b92e43b5
import { TitleBar } from '../../view/title/TitleBar'
@Entry
@Component
export struct Premiere {
scroller: Scroller = new Scroller()
build() {
Column() {
TitleBar({ title: "功能介绍" })
Scroll(this.scroller) {
Image($rawfile('system/shuoming.jpg')).width('100%')
}.scrollBar(BarState.Off).scrollBarWidth(1) // 滚动条宽度
}.padding(10)
.linearGradient({
direction: GradientDirection.RightBottom,
repeating: true,
colors: [['#36a3c0', 0.0], ['#97c6a6', 1.0], ['#c7d799', 2.0]]
})
}
}
\ No newline at end of file
entry/src/main/resources/base/profile/main_pages.json
View file @
b92e43b5
...
@@ -22,6 +22,9 @@
...
@@ -22,6 +22,9 @@
"pages/sub_systemMaintenance/General"
,
"pages/sub_systemMaintenance/General"
,
"pages/sub_systemMaintenance/Maintenance"
,
"pages/sub_systemMaintenance/Maintenance"
,
"pages/sub_systemMaintenance/FunctionIntroduction"
,
"pages/sub_systemMaintenance/FunctionIntroduction"
,
"pages/sub_systemMaintenance/Premiere"
,
"pages/sub_systemMaintenance/BurnerDescription"
,
"pages/sub_systemMaintenance/FunctionIntroduction"
,
"pages/sub_systemMaintenance/DeviceInfoPage"
,
"pages/sub_systemMaintenance/DeviceInfoPage"
,
"pages/sub_systemMaintenance/DataSynchronism/DataSynchronism"
"pages/sub_systemMaintenance/DataSynchronism/DataSynchronism"
]
]
...
...
entry/src/main/resources/rawfile/system/shuoming.jpg
0 → 100644
View file @
b92e43b5
差异被折叠。
点击展开。
features/SystemMaintenance/src/main/ets/model/UniInitList.ets
View file @
b92e43b5
...
@@ -375,6 +375,7 @@ export const documentList: UniListItem[] = [
...
@@ -375,6 +375,7 @@ export const documentList: UniListItem[] = [
title: '被装仓库作业终端主要更新',
title: '被装仓库作业终端主要更新',
showExtraIcon: true,
showExtraIcon: true,
showArrow: true,
showArrow: true,
url: 'pages/sub_systemMaintenance/Premiere',
//extraIcon: '',
//extraIcon: '',
targetValue: '2023-04-07',
targetValue: '2023-04-07',
description: ''
description: ''
...
@@ -383,6 +384,7 @@ export const documentList: UniListItem[] = [
...
@@ -383,6 +384,7 @@ export const documentList: UniListItem[] = [
title: '被装仓库作业终端刻录机主要更新',
title: '被装仓库作业终端刻录机主要更新',
showExtraIcon: true,
showExtraIcon: true,
showArrow: true,
showArrow: true,
url: 'pages/sub_systemMaintenance/BurnerDescription',
//extraIcon: '',
//extraIcon: '',
targetValue: '2023-06-21',
targetValue: '2023-06-21',
description: ''
description: ''
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论