效果展示:
1.建立項目包
2.創建文件
3.代碼部分:
4.顯示部分:
Index.hml
Index.css
.container {
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
.title{
width: 100%;
text-align: center;
margin-bottom: 20px;
}
.boxs{
flex-direction: column;
justify-content: center;
align-items: flex-start;
width: 100%;
}
.text {
font-size: 20px;
color: #333;
opacity: 0.9;
margin-bottom: 10px;
margin-left: 20px;
}
Index.js
.container {
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
.title{
width: 100%;
text-align: center;
margin-bottom: 20px;
}
.boxs{
flex-direction: column;
justify-content: center;
align-items: flex-start;
width: 100%;
}
.text {
font-size: 20px;
color: #333;
opacity: 0.9;
margin-bottom: 10px;
margin-left: 20px;
}
輸入記錄部分:
Tuoter.hml
輸入記錄
Touter.css
.container {
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
.title {
font-size: 30px;
text-align: center;
width: 200px;
height: 100px;
}
.box{
flex-direction: column;
justify-content: space-between;
align-items: center;
height: 200px;
width: 100%;
}
Touter.js
import router from '@system.router';
export default {
data:{
time:"",
address:"",
personal:"",
},
getChange(e){
let idName = e.target.id
if (idName === "1") {
this.time = e.value
}else if (idName === "2") {
this.address = e.value
}else if (idName === "3") {
this.personal = e.value
}
},
btnClick(){
router.push({
uri:"pages/index/index",
params:{
time:this.time,
address:this.address,
personal:this.personal,
}
})
}
}
聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。
舉報投訴
-
鴻蒙系統
+關注
關注
183文章
2638瀏覽量
66633 -
HarmonyOS
+關注
關注
79文章
1982瀏覽量
30488
發布評論請先 登錄
相關推薦
【OK210申請】無線數據傳輸模塊設計
申請理由:飛凌嵌入式OK210開發板是很好的開發板,我很希望能得到這個開發板并通過它來學習更多知識項目描述:內容:(1) 針對系統的需求選擇合適的無線數據傳輸模塊。(2) 根據選擇的器
發表于 07-24 10:39
HarmonyOS開發-router路由-數據傳輸
: 20px; color: #333; opacity: 0.9; margin-bottom: 10px; margin-left: 20px;}Index.jsimport router from
發表于 03-31 10:48
DMA進行數據傳輸和CPU進行數據傳輸的疑問
求大佬解答,本人正在學習STM32單片機中DMA直接數據存儲部分的內容
看了DMA簡介后,也上手過實例代碼,但是沒有實際的項目經驗,所以有以下疑問:
DMA外設在進行數據傳輸的操作,是否也是需要經過
發表于 05-25 17:18
基于定向數據傳輸的地理路由算法
了基于定向數據傳輸的地理路由( GRDDT)算法。該算法采用了一種新的數據轉發機制并且更加有效地利用鄰居表信息,有效避免了以上情形的出現,從而達到降低數據分組
發表于 02-04 11:39
?0次下載
網絡數據傳輸速率的單位是什么
網絡數據傳輸速率的單位是 bps(bit per second) ,即比特每秒,也可以表示為b/s或bit/s。它表示的是每秒鐘傳輸的二進制數的位數。比特(bit)是計算機中數據量的單位,也是信息論
評論