-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9278598
commit 6dae608
Showing
5 changed files
with
113 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
GoEasyDesigner/frontend/src/components/boxs/td/Switch/Switch.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
export default { | ||
top: "0", | ||
left: "0", | ||
width: "80", | ||
height: "32", | ||
noPlace: true, | ||
visible: true, | ||
disable: false, | ||
zIndex: 0, | ||
customListening:true, | ||
|
||
customValue: [true, false], | ||
label: ['yes','no'], | ||
loading: false, | ||
size: "medium", | ||
value: false, | ||
} |
28 changes: 28 additions & 0 deletions
28
GoEasyDesigner/frontend/src/components/boxs/td/Switch/Switch.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<template> | ||
<t-switch | ||
:label="item.label" | ||
:loading="item.loading" | ||
:size="item.size" | ||
v-model="item.value" | ||
@change="handleChange" | ||
/> | ||
|
||
</template> | ||
|
||
<script setup> | ||
import {getItemStyle} from "@/public"; | ||
import {defineEmits, defineProps} from "vue"; | ||
const {item} = defineProps(['item']) | ||
const emits = defineEmits(["CustomEvent"]); | ||
function onSendEvent(name, data) { | ||
emits("CustomEvent", name, data); | ||
} | ||
function handleChange() { | ||
onSendEvent('数据发生变化', item) | ||
} | ||
</script> |
64 changes: 64 additions & 0 deletions
64
GoEasyDesigner/frontend/src/components/boxs/td/Switch/SwitchAttr.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<template> | ||
<div class="属性表格"> | ||
<el-form | ||
label-position="left" | ||
label-width="100px" | ||
style="max-width: 460px" | ||
> | ||
<component is="common-properties" :item="item" /> | ||
|
||
|
||
<el-form-item label="label"> | ||
<el-input v-model="item.label[0]" /> | ||
<el-input v-model="item.label[1]" /> | ||
</el-form-item> | ||
<el-form-item label="loading"> | ||
<el-switch v-model="item.loading" /> | ||
</el-form-item> | ||
<el-form-item label="size"> | ||
<el-select v-model="item.size" style="width: 100%"> | ||
<el-option | ||
v-for="(item, index) in sizeOptions" | ||
:key="item" | ||
:label="item.label" | ||
:value="item.value" | ||
/> | ||
</el-select> | ||
</el-form-item> | ||
<el-form-item label="value"> | ||
<el-switch v-model="item.value" /> | ||
</el-form-item> | ||
|
||
</el-form> | ||
|
||
|
||
</div> | ||
<component | ||
is="common-event-component" | ||
:item="item" | ||
:eventName="eventNames" | ||
/> | ||
</template> | ||
|
||
<script setup> | ||
import { ref, defineProps, defineEmits, onMounted } from "vue"; | ||
const emits = defineEmits(["添加事件被选择"]); | ||
const props = defineProps(["item"]); | ||
let sizeOptions = ref([ | ||
{ label: "小", value: "small" }, | ||
{ label: "中", value: "medium" }, | ||
{ label: "大", value: "large" }, | ||
]); | ||
let eventNames = ref([ | ||
{ label: "数据发生变化", value: "change" }, | ||
]); | ||
onMounted(() => { | ||
if (localStorage.getItem("locale") === "English") { | ||
sizeOptions.value.forEach((item) => { | ||
item.label = item.value; | ||
}); | ||
} | ||
}); | ||
</script> |