Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
c0c37be4
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
大约 1 年 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
c0c37be4
编写于
2月 08, 2022
作者:
B
bayanxing
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
codecheck问题修改
Signed-off-by:
N
bayanxing
<
bayanxing@kaihongdigi.com
>
上级
8e295b91
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
22 addition
and
37 deletion
+22
-37
ace/ace_standard/src/main/js/default/pages/qrcode/index.hml
ace/ace_standard/src/main/js/default/pages/qrcode/index.hml
+4
-4
ace/ace_standard/src/main/js/default/pages/qrcode/index.js
ace/ace_standard/src/main/js/default/pages/qrcode/index.js
+11
-26
ace/ace_standard/src/main/js/default/pages/toggle/index.hml
ace/ace_standard/src/main/js/default/pages/toggle/index.hml
+3
-3
ace/ace_standard/src/main/js/default/pages/toggle/index.js
ace/ace_standard/src/main/js/default/pages/toggle/index.js
+4
-4
未找到文件。
ace/ace_standard/src/main/js/default/pages/qrcode/index.hml
浏览文件 @
c0c37be4
<div class="container">
<qrcode value="{{qr_
value}}" type="{{qr_t
ype}}"
style="color: {{qr_
col}};background-color: {{qr_bcol}};width: {{qr_size}};height: {{qr_s
ize}};margin-bottom: 70px;"></qrcode>
<qrcode value="{{qr_
Value}}" type="{{qr_T
ype}}"
style="color: {{qr_
Col}};background-color: {{qr_BCol}};width: {{qr_Size}};height: {{qr_S
ize}};margin-bottom: 70px;"></qrcode>
<text class="txt">Type</text>
<switch showtext="true" checked="true" texton="rect" textoff="circle" onchange="settype"></switch>
<text class="txt">Color</text>
<select onchange="setcol">
<option for="{{col_
l
ist}}" value="{{$item}}">{{$item}}</option>
<option for="{{col_
L
ist}}" value="{{$item}}">{{$item}}</option>
</select>
<text class="txt">Background Color</text>
<select onchange="setbcol">
<option for="{{b
col_l
ist}}" value="{{$item}}">{{$item}}</option>
<option for="{{b
Col_L
ist}}" value="{{$item}}">{{$item}}</option>
</select>
</div>
ace/ace_standard/src/main/js/default/pages/qrcode/index.js
浏览文件 @
c0c37be4
/**
* Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export
default
{
data
:
{
qr_
t
ype
:
'
rect
'
,
qr_
s
ize
:
'
300px
'
,
qr_
c
ol
:
'
#87ceeb
'
,
col_
l
ist
:
[
'
#87ceeb
'
,
'
#fa8072
'
,
'
#da70d6
'
,
'
#80ff00ff
'
,
'
#00ff00ff
'
],
qr_
bc
ol
:
'
#f0ffff
'
,
b
col_l
ist
:
[
'
#f0ffff
'
,
'
#ffffe0
'
,
'
#d8bfd8
'
]
qr_
T
ype
:
'
rect
'
,
qr_
S
ize
:
'
300px
'
,
qr_
C
ol
:
'
#87ceeb
'
,
col_
L
ist
:
[
'
#87ceeb
'
,
'
#fa8072
'
,
'
#da70d6
'
,
'
#80ff00ff
'
,
'
#00ff00ff
'
],
qr_
BC
ol
:
'
#f0ffff
'
,
b
Col_L
ist
:
[
'
#f0ffff
'
,
'
#ffffe0
'
,
'
#d8bfd8
'
]
},
settype
(
e
)
{
if
(
e
.
checked
)
{
this
.
qr_
t
ype
=
'
rect
'
this
.
qr_
T
ype
=
'
rect
'
}
else
{
this
.
qr_
t
ype
=
'
circle
'
this
.
qr_
T
ype
=
'
circle
'
}
},
setvalue
(
e
)
{
this
.
qr_
v
alue
=
e
.
newValue
this
.
qr_
V
alue
=
e
.
newValue
},
setcol
(
e
)
{
this
.
qr_
c
ol
=
e
.
newValue
this
.
qr_
C
ol
=
e
.
newValue
},
setbcol
(
e
)
{
this
.
qr_
bc
ol
=
e
.
newValue
this
.
qr_
BC
ol
=
e
.
newValue
}
}
\ No newline at end of file
ace/ace_standard/src/main/js/default/pages/toggle/index.hml
浏览文件 @
c0c37be4
...
...
@@ -7,7 +7,7 @@
<text class="margin">2. Single choice example</text>
<div style="flex-wrap: wrap">
<toggle class="margin toggle2" for="{{toggle_
l
ist}}" id="{{$item.id}}" checked="{{$item.checked}}"
<toggle class="margin toggle2" for="{{toggle_
L
ist}}" id="{{$item.id}}" checked="{{$item.checked}}"
value="{{$item.name}}" @change="allchange" @click="allclick({{$item.id}})"></toggle>
</div>
...
...
@@ -18,7 +18,7 @@
<text class="margin">4. Single choice example</text>
<div style="flex-wrap: wrap">
<toggle class="margin toggle4" for="{{toggle_
l
ist}}" id="{{$item.id}}" checked="{{$item.checked}}"
<toggle class="margin toggle4" for="{{toggle_
L
ist}}" id="{{$item.id}}" checked="{{$item.checked}}"
value="{{$item.name}}" @change="allchange" @click="allclick({{$item.id}})"></toggle>
</div>
...
...
@@ -30,7 +30,7 @@
<text class="margin margin5">6. Single</text>
<div style="flex-wrap: wrap">
<toggle class="margin toggle6" for="{{toggle_
l
ist}}" id="{{$item.id}}" checked="{{$item.checked}}"
<toggle class="margin toggle6" for="{{toggle_
L
ist}}" id="{{$item.id}}" checked="{{$item.checked}}"
value="{{$item.name}}" @change="allchange" @click="allclick({{$item.id}})"></toggle>
</div>
</div>
...
...
ace/ace_standard/src/main/js/default/pages/toggle/index.js
浏览文件 @
c0c37be4
...
...
@@ -15,7 +15,7 @@
export
default
{
data
:
{
toggle_
l
ist
:
[
toggle_
L
ist
:
[
{
"
id
"
:
"
1001
"
,
"
name
"
:
"
Living room
"
,
"
checked
"
:
true
},
{
"
id
"
:
"
1002
"
,
"
name
"
:
"
Bedroom
"
,
"
checked
"
:
false
},
{
"
id
"
:
"
1003
"
,
"
name
"
:
"
Second bedroom
"
,
"
checked
"
:
false
},
...
...
@@ -30,10 +30,10 @@ export default {
allchange
(
e
)
{
if
(
e
.
checked
===
true
)
{
for
(
var
i
=
0
;
i
<
this
.
toggle_list
.
length
;
i
++
)
{
if
(
this
.
toggle_
l
ist
[
i
].
id
===
this
.
idx
)
{
this
.
toggle_
l
ist
[
i
].
checked
=
true
if
(
this
.
toggle_
L
ist
[
i
].
id
===
this
.
idx
)
{
this
.
toggle_
L
ist
[
i
].
checked
=
true
}
else
{
this
.
toggle_
l
ist
[
i
].
checked
=
false
this
.
toggle_
L
ist
[
i
].
checked
=
false
}
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录