Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Z
zeroing-editor
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
劳工
zeroing-editor
Commits
837757e1
Commit
837757e1
authored
Nov 14, 2019
by
rockyl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加属性
修复所有el-form自动提交的问题
parent
2bbf6a42
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
57 additions
and
26 deletions
+57
-26
config.js
src/config.js
+2
-1
project.js
src/store/modules/project.js
+0
-2
template.js
src/template.js
+23
-17
events.js
src/utils/events.js
+1
-1
properties.js
src/utils/properties.js
+26
-0
BehaviorTab.vue
src/views/Editor/Inspector/BehaviorTab.vue
+1
-1
PropsTab.vue
src/views/Editor/Inspector/PropsTab.vue
+1
-1
ScriptsTab.vue
src/views/Editor/Inspector/ScriptsTab.vue
+1
-1
MetaEditorDialog.vue
src/views/Editor/behavior-editor/MetaEditorDialog.vue
+1
-1
PropertiesEditor.vue
src/views/Editor/behavior-editor/PropertiesEditor.vue
+1
-1
No files found.
src/config.js
View file @
837757e1
...
...
@@ -2,7 +2,8 @@
* Created by rockyl on 2019-09-19.
*/
export
const
API_HOST
=
'http://10.10.95.74:7777'
;
export
const
API_HOST
=
'http://beacon.duibadev.com.cn'
;
//export const API_HOST = 'http://10.10.95.74:7777';
//export const API_HOST = 'http://localhost:3002';
export
const
UPLOAD_FILE_URL
=
API_HOST
+
'/api/uploadFile'
;
...
...
src/store/modules/project.js
View file @
837757e1
...
...
@@ -61,8 +61,6 @@ export const projectStore = {
if
(
data
)
{
const
{
views
,
assets
,
dataMapping
,
processes
,
options
,}
=
JSON
.
parse
(
data
);
console
.
log
(
processes
);
Vue
.
set
(
localData
,
'options'
,
options
||
getDefaultOptions
());
Vue
.
set
(
localData
,
'views'
,
views
||
[]);
Vue
.
set
(
localData
,
'assets'
,
assets
||
[]);
...
...
src/template.js
View file @
837757e1
...
...
@@ -3,7 +3,11 @@
*/
export
const
template
=
` <meta charset="UTF-8">
`<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>$PAGE_TITLE$</title>
<meta name="viewport"
content="width=device-width,initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no"/>
...
...
@@ -13,25 +17,27 @@ content="width=device-width,initial-scale=1, minimum-scale=1, maximum-scale=1, u
<meta name="x5-fullscreen" content="true"/>
<meta name="360-fullscreen" content="true"/>
<style>
html,
body {
padding: 0;
margin: 0;
border: 0;
width: 100%;
height: 100%;
overflow: hidden;
position: absolute;
background-color: white;
}
</style>
html,
body {
padding: 0;
margin: 0;
border: 0;
width: 100%;
height: 100%;
overflow: hidden;
position: absolute;
background-color: white;
}
</style>
</head>
<body>
<div id="$CONTAINER_ID$" style="line-height:0;font-size:0"></div>
<div id="$CONTAINER_ID$" style="line-height:0;font-size:0"></div>
<script src="http://10.10.94.134:4002/dist/index.js"></script>
<script>
engine.launch('http://10.10.94.134:4002/examples/mock/test.json');
</script>
engine.launch('//yun.duiba.com.cn/aurora/$VERSION$-data.json');
</script>
</body>
</html>
`
;
src/utils/events.js
View file @
837757e1
export
default
[
'init'
,
'awake'
,
'sleep'
,
'dataevent'
,
'click'
,
'touchstart'
,
'touchend'
,
'touchmove'
]
\ No newline at end of file
export
default
[
'init'
,
'awake'
,
'sleep'
,
'datacenter'
,
'click'
,
'touchstart'
,
'touchend'
,
'touchmove'
]
\ No newline at end of file
src/utils/properties.js
View file @
837757e1
...
...
@@ -33,6 +33,16 @@ export default {
},
value
:
0
},
anchorX
:
{
title
:
'锚点X'
,
type
:
'inputNumber'
,
value
:
0
},
anchorY
:
{
title
:
'锚点Y'
,
type
:
'inputNumber'
,
value
:
0
},
scaleX
:
{
title
:
'X轴缩放'
,
type
:
'inputNumber'
,
...
...
@@ -59,6 +69,22 @@ export default {
step
:
0.1
}
},
mouseEnabled
:
{
title
:
'可否交互'
,
type
:
'switch'
,
props
:
{
width
:
40
},
value
:
true
},
mouseChildren
:
{
title
:
'子集交互'
,
type
:
'switch'
,
props
:
{
width
:
40
},
value
:
true
},
visible
:
{
title
:
'是否可见'
,
type
:
'switch'
,
...
...
src/views/Editor/Inspector/BehaviorTab.vue
View file @
837757e1
<
template
>
<div
class=
"zero-inspector-behavior-form"
v-if=
"activeComponent.uuid"
>
<el-scrollbar
class=
"scrollbar"
wrap-class=
"wrap-x-hidden"
>
<el-form
ref=
"form"
size=
"mini"
label-width=
"60px"
>
<el-form
ref=
"form"
size=
"mini"
label-width=
"60px"
v
>
<div
v-for=
"(evn, key) in eventsObj"
:key=
"key"
>
<el-form-item
:label=
"$t('Event') + ':'"
>
<div>
{{
key
}}
</div>
...
...
src/views/Editor/Inspector/PropsTab.vue
View file @
837757e1
<
template
>
<div
class=
"zero-inspector-props-form"
v-if=
"activeComponent.uuid"
>
<el-scrollbar
class=
"scrollbar"
wrap-class=
"wrap-x-hidden"
>
<el-form
ref=
"form"
size=
"mini"
:model=
"form"
label-width=
"80px"
>
<el-form
ref=
"form"
size=
"mini"
:model=
"form"
label-width=
"80px"
@
submit
.
native
.
prevent
>
<el-collapse
v-model=
"configColl"
>
<el-collapse-item
title=
"配置"
name=
"properties"
>
<el-form-item
label=
"名称"
>
...
...
src/views/Editor/Inspector/ScriptsTab.vue
View file @
837757e1
...
...
@@ -2,7 +2,7 @@
<div
class=
"zero-inspector-script-form"
v-if=
"activeComponent.uuid"
>
<el-collapse
v-model=
"configColl"
>
<el-collapse-item
title=
"配置"
name=
"properties"
>
<el-form
ref=
"form"
size=
"mini"
:model=
"form"
label-width=
"80px"
>
<el-form
ref=
"form"
size=
"mini"
:model=
"form"
label-width=
"80px"
@
submit
.
native
.
prevent
>
<el-form-item
label=
"名称"
>
<el-input
v-model=
"form.name"
@
input=
"v => handleChange('name', v)"
></el-input>
</el-form-item>
...
...
src/views/Editor/behavior-editor/MetaEditorDialog.vue
View file @
837757e1
...
...
@@ -3,7 +3,7 @@
:close-on-click-modal=
"false"
:append-to-body=
"true"
>
<div
class=
"meta-editor-wrapper"
>
<el-form
ref=
"form"
v-if=
"meta"
:model=
"meta"
:rules=
"rules"
:show-message=
"false"
class=
"info-editor"
size=
"mini"
label-position=
"right"
label-width=
"70px"
>
<el-form
ref=
"form"
v-if=
"meta"
:model=
"meta"
:rules=
"rules"
:show-message=
"false"
class=
"info-editor"
size=
"mini"
label-position=
"right"
label-width=
"70px"
@
submit
.
native
.
prevent
>
<template>
<el-form-item
prop=
"id"
label=
"ID"
>
<el-input
v-model=
"meta.id"
:placeholder=
"$t('ID')"
:readonly=
"!editable"
/>
...
...
src/views/Editor/behavior-editor/PropertiesEditor.vue
View file @
837757e1
...
...
@@ -5,7 +5,7 @@
</el-input>
<el-scrollbar
class=
"scrollbar"
wrap-class=
"wrap-x-hidden"
view-class=
"scrollbar-view"
>
<el-form
v-model=
"process"
size=
"mini"
label-width=
"80px"
label-position=
"left"
@
submit
.
prevent
>
<el-form
v-model=
"process"
size=
"mini"
label-width=
"80px"
label-position=
"left"
@
submit
.
native
.
prevent
>
<component
v-for=
"(property, key) in process.meta.props"
:is=
"getEditor(property)"
v-model=
"process.data.props[key]"
...
...
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