Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
AK09
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
template admin
AK09
Commits
35bcd130
Commit
35bcd130
authored
Apr 22, 2021
by
范雪寒
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: UI走查完成
parent
3a909711
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
168 additions
and
93 deletions
+168
-93
angular.json
form/angular.json
+5
-2
form.component.html
form/src/app/form/form.component.html
+28
-22
form.component.ts
form/src/app/form/form.component.ts
+21
-20
AK09.fire
play/assets/AK09/scene/AK09.fire
+77
-47
AK09.js
play/assets/AK09/scene/AK09.js
+36
-1
config.json
publish/publish/config.json
+1
-1
No files found.
form/angular.json
View file @
35bcd130
...
@@ -128,5 +128,8 @@
...
@@ -128,5 +128,8 @@
}
}
}
}
},
},
"defaultProject"
:
"ng-template-generator"
"defaultProject"
:
"ng-template-generator"
,
}
"cli"
:
{
"analytics"
:
false
}
}
\ No newline at end of file
form/src/app/form/form.component.html
View file @
35bcd130
<div
class=
"model-content"
>
<div
class=
"model-content"
>
<div
style=
"padding: 10px;"
>
<div
style=
"padding: 10px;"
>
<div
style=
"width: 300px; float: left;"
align=
'center'
>
<div
style=
"width: 300px;"
align=
'center'
>
<span>
图1:
</span>
<span>
图1:
</span>
<app-upload-image-with-preview
<app-upload-image-with-preview
[
picUrl
]="
item
.
pic_url
"
[
picUrl
]="
item
.
options
[
0
].
image
"
(
imageUploaded
)="
onImageUploadSuccess
($
event
,
'
pic_url
'
)"
>
(
imageUploaded
)="
onImageUploadSuccess
($
event
,
0
)"
>
</app-upload-image-with-preview>
</app-upload-image-with-preview>
<span>
图1文本:
</span>
<input
type=
"text"
style=
"width: 240px;"
nz-input
[(
ngModel
)]="
item
.
options
[
0
].
word
"
(
blur
)="
save
()"
>
</div>
</div>
<div
style=
"width: 300px; float: left;"
align=
'center'
>
<div
style=
"width: 300px; margin-top: 5px;"
align=
'center'
>
<span>
图2:
</span>
<span>
图2:
</span>
<app-upload-image-with-preview
<app-upload-image-with-preview
[
picUrl
]="
item
.
pic_url_2
"
[
picUrl
]="
item
.
options
[
1
].
image
"
(
imageUploaded
)="
onImageUploadSuccess
($
event
,
'
pic_url_2
'
)"
>
(
imageUploaded
)="
onImageUploadSuccess
($
event
,
1
)"
>
</app-upload-image-with-preview>
</app-upload-image-with-preview>
<span>
图2文本:
</span>
<input
type=
"text"
style=
"width: 240px;"
nz-input
[(
ngModel
)]="
item
.
options
[
1
].
word
"
(
blur
)="
save
()"
>
</div>
</div>
<div
style=
"width: 300px; float: left;"
align=
'center'
>
<div
style=
"width: 300px; margin-top: 15px;"
>
<span>
图3:
</span>
<span>
文本:
</span>
<app-upload-image-with-preview
<input
type=
"text"
nz-input
[(
ngModel
)]="
item
.
text
"
(
blur
)="
save
()"
>
[
picUrl
]="
item
.
options
[
2
].
image
"
(
imageUploaded
)="
onImageUploadSuccess
($
event
,
2
)"
>
</app-upload-image-with-preview>
<span>
图3文本:
</span>
<input
type=
"text"
style=
"width: 240px;"
nz-input
[(
ngModel
)]="
item
.
options
[
2
].
word
"
(
blur
)="
save
()"
>
</div>
</div>
<div
style=
"float: none; clear: both; height: 30px;"
></div>
<div
style=
"margin-top: 5px"
>
<div
style=
"float: none;"
>
<span>
音频:
</span>
<div
style=
"width: 150px; margin-top: 15px; float: left;"
>
<app-audio-recorder
<span>
文本(下划线之前):
</span>
[
audioUrl
]="
item
.
audio_url
"
<input
type=
"text"
style=
"width: 150px;"
nz-input
[(
ngModel
)]="
item
.
question
.
labelLeft
"
(
blur
)="
save
()"
>
(
audioUploaded
)="
onAudioUploadSuccess
($
event
,
'
audio_url
')"
</div>
></app-audio-recorder>
<div
style=
"width: 150px; margin-left: 15px; margin-top: 15px; float: left;"
>
<span>
文本(下划线之后):
</span>
<input
type=
"text"
nz-input
[(
ngModel
)]="
item
.
question
.
labelRight
"
(
blur
)="
save
()"
>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
form/src/app/form/form.component.ts
View file @
35bcd130
...
@@ -10,7 +10,7 @@ import { JsonPipe } from '@angular/common';
...
@@ -10,7 +10,7 @@ import { JsonPipe } from '@angular/common';
export
class
FormComponent
implements
OnInit
,
OnChanges
,
OnDestroy
{
export
class
FormComponent
implements
OnInit
,
OnChanges
,
OnDestroy
{
// 储存数据用
// 储存数据用
saveKey
=
"
test_001
"
;
saveKey
=
"
AK09
"
;
// 储存对象
// 储存对象
item
;
item
;
...
@@ -18,24 +18,24 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
...
@@ -18,24 +18,24 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
}
}
createShell
()
{
this
.
item
.
wordList
.
push
({
word
:
''
,
audio
:
''
,
backWord
:
''
,
backWordAudio
:
''
,
});
this
.
save
();
}
removeShell
(
idx
)
{
this
.
item
.
wordList
.
splice
(
idx
,
1
);
this
.
save
();
}
ngOnInit
()
{
ngOnInit
()
{
this
.
item
=
{};
this
.
item
=
{
question
:
{
labelLeft
:
'
I like
'
,
labelRight
:
'
.
'
},
options
:
[{
image
:
'
//staging-teach.cdn.ireadabc.com/9f05f3c93fa5222c2290309b24db3d6a.png
'
,
word
:
'
Apple
'
},
{
image
:
'
//staging-teach.cdn.ireadabc.com/eb28421cc9a72506c11f5db3e1d15b99.png
'
,
word
:
'
Banana
'
},
{
image
:
'
//staging-teach.cdn.ireadabc.com/20f8ba0fdb560d0ab9af76adfae8fda4.png
'
,
word
:
'
Orange
'
}],
};
// 获取存储的数据
// 获取存储的数据
(
<
any
>
window
).
courseware
.
getData
((
data
)
=>
{
(
<
any
>
window
).
courseware
.
getData
((
data
)
=>
{
...
@@ -67,9 +67,10 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
...
@@ -67,9 +67,10 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
* 储存图片数据
* 储存图片数据
* @param e
* @param e
*/
*/
onImageUploadSuccess
(
e
,
key
)
{
onImageUploadSuccess
(
e
,
idx
)
{
this
.
item
.
options
[
idx
].
image
=
e
.
url
this
.
item
[
key
]
=
e
.
url
;
.
replaceAll
(
'
https:
'
,
''
)
.
replaceAll
(
'
http:
'
,
''
);
this
.
save
();
this
.
save
();
}
}
...
...
play/assets/AK09/scene/AK09.fire
View file @
35bcd130
...
@@ -17,16 +17,16 @@
...
@@ -17,16 +17,16 @@
"__id__": 2
"__id__": 2
},
},
{
{
"__id__": 10
7
"__id__": 10
8
},
},
{
{
"__id__": 1
09
"__id__": 1
10
},
},
{
{
"__id__": 11
1
"__id__": 11
2
},
},
{
{
"__id__": 11
3
"__id__": 11
4
}
}
],
],
"_active": false,
"_active": false,
...
@@ -84,19 +84,19 @@
...
@@ -84,19 +84,19 @@
"__id__": 3
"__id__": 3
},
},
{
{
"__id__": 9
6
"__id__": 9
7
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
"__id__": 104
},
{
{
"__id__": 105
"__id__": 105
},
},
{
{
"__id__": 106
"__id__": 106
},
{
"__id__": 107
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -165,16 +165,16 @@
...
@@ -165,16 +165,16 @@
"__id__": 83
"__id__": 83
},
},
{
{
"__id__": 8
7
"__id__": 8
8
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 9
4
"__id__": 9
5
},
},
{
{
"__id__": 9
5
"__id__": 9
6
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4271,7 +4271,7 @@
...
@@ -4271,7 +4271,7 @@
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 8
6
"__id__": 8
7
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4334,6 +4334,9 @@
...
@@ -4334,6 +4334,9 @@
"_components": [
"_components": [
{
{
"__id__": 85
"__id__": 85
},
{
"__id__": 86
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4416,6 +4419,33 @@
...
@@ -4416,6 +4419,33 @@
"_atlas": null,
"_atlas": null,
"_id": "99PLmDe39DMIyXZBWf7xls"
"_id": "99PLmDe39DMIyXZBWf7xls"
},
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 84
},
"_enabled": true,
"alignMode": 1,
"_target": null,
"_alignFlags": 45,
"_left": 0,
"_right": 0,
"_top": 0,
"_bottom": 0,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
"_isAbsRight": true,
"_isAbsTop": true,
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
"_originalWidth": 1280,
"_originalHeight": 720,
"_id": "b1q4phGplK16vW4yr3G6Ig"
},
{
{
"__type__": "cc.Widget",
"__type__": "cc.Widget",
"_name": "",
"_name": "",
...
@@ -4452,19 +4482,19 @@
...
@@ -4452,19 +4482,19 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 8
8
"__id__": 8
9
},
},
{
{
"__id__": 9
0
"__id__": 9
1
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 9
2
"__id__": 9
3
},
},
{
{
"__id__": 9
3
"__id__": 9
4
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4520,13 +4550,13 @@
...
@@ -4520,13 +4550,13 @@
"_name": "tipLabel",
"_name": "tipLabel",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 8
7
"__id__": 8
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__":
89
"__id__":
90
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4582,7 +4612,7 @@
...
@@ -4582,7 +4612,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 8
8
"__id__": 8
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4617,13 +4647,13 @@
...
@@ -4617,13 +4647,13 @@
"_name": "starNode",
"_name": "starNode",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 8
7
"__id__": 8
8
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 9
1
"__id__": 9
2
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4679,7 +4709,7 @@
...
@@ -4679,7 +4709,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
0
"__id__": 9
1
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4711,7 +4741,7 @@
...
@@ -4711,7 +4741,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 8
7
"__id__": 8
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -4743,7 +4773,7 @@
...
@@ -4743,7 +4773,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 8
7
"__id__": 8
8
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 1,
"alignMode": 1,
...
@@ -4833,7 +4863,7 @@
...
@@ -4833,7 +4863,7 @@
},
},
"_children": [
"_children": [
{
{
"__id__": 9
7
"__id__": 9
8
}
}
],
],
"_active": true,
"_active": true,
...
@@ -4891,17 +4921,17 @@
...
@@ -4891,17 +4921,17 @@
"_name": "testBtn",
"_name": "testBtn",
"_objFlags": 0,
"_objFlags": 0,
"_parent": {
"_parent": {
"__id__": 9
6
"__id__": 9
7
},
},
"_children": [
"_children": [
{
{
"__id__": 9
8
"__id__": 9
9
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 10
3
"__id__": 10
4
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -4957,20 +4987,20 @@
...
@@ -4957,20 +4987,20 @@
"_name": "Background",
"_name": "Background",
"_objFlags": 512,
"_objFlags": 512,
"_parent": {
"_parent": {
"__id__": 9
7
"__id__": 9
8
},
},
"_children": [
"_children": [
{
{
"__id__":
99
"__id__":
100
}
}
],
],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 10
1
"__id__": 10
2
},
},
{
{
"__id__": 10
2
"__id__": 10
3
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5026,13 +5056,13 @@
...
@@ -5026,13 +5056,13 @@
"_name": "Label",
"_name": "Label",
"_objFlags": 512,
"_objFlags": 512,
"_parent": {
"_parent": {
"__id__": 9
8
"__id__": 9
9
},
},
"_children": [],
"_children": [],
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 10
0
"__id__": 10
1
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5088,7 +5118,7 @@
...
@@ -5088,7 +5118,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__":
99
"__id__":
100
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5121,7 +5151,7 @@
...
@@ -5121,7 +5151,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
8
"__id__": 9
9
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5153,7 +5183,7 @@
...
@@ -5153,7 +5183,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
8
"__id__": 9
9
},
},
"_enabled": true,
"_enabled": true,
"alignMode": 0,
"alignMode": 0,
...
@@ -5180,7 +5210,7 @@
...
@@ -5180,7 +5210,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 9
7
"__id__": 9
8
},
},
"_enabled": true,
"_enabled": true,
"_normalMaterial": null,
"_normalMaterial": null,
...
@@ -5253,7 +5283,7 @@
...
@@ -5253,7 +5283,7 @@
"__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
"__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
},
},
"_N$target": {
"_N$target": {
"__id__": 9
8
"__id__": 9
9
},
},
"_id": "0bNdPv3K1CubNfgwCtNZnD"
"_id": "0bNdPv3K1CubNfgwCtNZnD"
},
},
...
@@ -5322,7 +5352,7 @@
...
@@ -5322,7 +5352,7 @@
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 10
8
"__id__": 10
9
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5378,7 +5408,7 @@
...
@@ -5378,7 +5408,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 10
7
"__id__": 10
8
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5419,7 +5449,7 @@
...
@@ -5419,7 +5449,7 @@
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 11
0
"__id__": 11
1
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5475,7 +5505,7 @@
...
@@ -5475,7 +5505,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 1
09
"__id__": 1
10
},
},
"_enabled": true,
"_enabled": true,
"_materials": [
"_materials": [
...
@@ -5513,7 +5543,7 @@
...
@@ -5513,7 +5543,7 @@
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 11
2
"__id__": 11
3
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5569,7 +5599,7 @@
...
@@ -5569,7 +5599,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 11
1
"__id__": 11
2
},
},
"_enabled": true,
"_enabled": true,
"_clip": {
"_clip": {
...
@@ -5594,7 +5624,7 @@
...
@@ -5594,7 +5624,7 @@
"_active": true,
"_active": true,
"_components": [
"_components": [
{
{
"__id__": 11
4
"__id__": 11
5
}
}
],
],
"_prefab": null,
"_prefab": null,
...
@@ -5650,7 +5680,7 @@
...
@@ -5650,7 +5680,7 @@
"_name": "",
"_name": "",
"_objFlags": 0,
"_objFlags": 0,
"node": {
"node": {
"__id__": 11
3
"__id__": 11
4
},
},
"_enabled": true,
"_enabled": true,
"_clip": {
"_clip": {
...
...
play/assets/AK09/scene/AK09.js
View file @
35bcd130
...
@@ -238,9 +238,11 @@ cc.Class({
...
@@ -238,9 +238,11 @@ cc.Class({
next
();
next
();
});
});
window
.
courseware
.
onEvent
(
'
hideOption
'
,
(
data
,
next
)
=>
{
window
.
courseware
.
onEvent
(
'
hideOption
'
,
(
data
,
next
)
=>
{
this
.
updateStatus
(
data
.
status
);
next
();
next
();
});
});
window
.
courseware
.
onEvent
(
'
hideQuestion
'
,
(
data
,
next
)
=>
{
window
.
courseware
.
onEvent
(
'
hideQuestion
'
,
(
data
,
next
)
=>
{
this
.
updateStatus
(
data
.
status
);
next
();
next
();
});
});
},
},
...
@@ -262,6 +264,39 @@ cc.Class({
...
@@ -262,6 +264,39 @@ cc.Class({
tipNode
.
active
=
this
.
teachFlag
;
tipNode
.
active
=
this
.
teachFlag
;
},
},
updateStatus
(
status
)
{
this
.
_status
=
status
;
this
.
_status
.
options
.
forEach
((
optionData
,
idx
)
=>
{
const
optionNode
=
cc
.
find
(
`Canvas/bg/book/option/option_
${
idx
}
`
);
if
(
!
optionNode
)
{
return
;
}
const
starOn
=
cc
.
find
(
`ImageStarOn`
,
optionNode
);
const
starOff
=
cc
.
find
(
`ImageStarOff`
,
optionNode
);
if
(
optionData
.
selected
)
{
starOn
.
opacity
=
255
;
starOff
.
opacity
=
0
;
}
else
{
starOn
.
opacity
=
0
;
starOff
.
opacity
=
255
;
}
});
const
questionLayout
=
cc
.
find
(
'
Canvas/bg/book/question/questionNode/questionLayout
'
);
if
(
!
questionLayout
)
{
return
;
}
const
starOn
=
cc
.
find
(
'
starNode/ImageStarOn
'
,
questionLayout
);
const
starOff
=
cc
.
find
(
'
starNode/ImageStarOff
'
,
questionLayout
);
if
(
this
.
_status
.
quesion
.
selected
)
{
starOn
.
opacity
=
255
;
starOff
.
opacity
=
0
;
}
else
{
starOn
.
opacity
=
0
;
starOff
.
opacity
=
255
;
}
},
initOptions
()
{
initOptions
()
{
this
.
data
.
options
.
forEach
((
optionData
,
idx
)
=>
{
this
.
data
.
options
.
forEach
((
optionData
,
idx
)
=>
{
const
imgNode
=
cc
.
find
(
`Canvas/bg/book/option/option_
${
idx
}
/image`
);
const
imgNode
=
cc
.
find
(
`Canvas/bg/book/option/option_
${
idx
}
/image`
);
...
@@ -422,7 +457,7 @@ cc.Class({
...
@@ -422,7 +457,7 @@ cc.Class({
questionNode
.
parent
=
maskBase
;
questionNode
.
parent
=
maskBase
;
questionNode
.
setPosition
(
newPos
);
questionNode
.
setPosition
(
newPos
);
await
asyncTweenTo
(
questionNode
,
0.6
,
{
x
:
0
,
y
:
0
,
scale
:
1.4
},
{
easing
:
'
sineInOut
'
});
await
asyncTweenTo
(
questionNode
,
0.6
,
{
x
:
0
,
y
:
0
,
scale
:
1.4
},
{
easing
:
'
sineInOut
'
});
this
.
playAudioByNodeName
(
'
right
'
);
this
.
playAudioByNodeName
(
'
right
'
);
const
starOn
=
cc
.
find
(
'
questionLayout/starNode/ImageStarOn
'
,
questionNode
);
const
starOn
=
cc
.
find
(
'
questionLayout/starNode/ImageStarOn
'
,
questionNode
);
const
starOff
=
cc
.
find
(
'
questionLayout/starNode/ImageStarOff
'
,
questionNode
);
const
starOff
=
cc
.
find
(
'
questionLayout/starNode/ImageStarOff
'
,
questionNode
);
...
...
publish/publish/config.json
View file @
35bcd130
{
"ios"
:{
"sceneName"
:
"AK09"
,
"version"
:
"80358"
},
"android"
:{
"sceneName"
:
"AK09"
,
"version"
:
"80358"
}}
{
"ios"
:{
"sceneName"
:
"AK09"
,
"version"
:
"180f8"
},
"android"
:{
"sceneName"
:
"AK09"
,
"version"
:
"180f8"
}}
\ No newline at end of file
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment