Commit b92e43b5 by huangqy

说明的模块

parent 95731976
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
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
...@@ -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"
] ]
......
...@@ -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 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论