添加select
parent
8348691e28
commit
3ec8a4f6a1
@ -0,0 +1,160 @@
|
|||||||
|
/*
|
||||||
|
* @Descripttion: 下拉框
|
||||||
|
* @Author: qianlishi qianlishi@anji-plus.com
|
||||||
|
* @Date: 2023-01-09 13:02:59
|
||||||
|
* @LastEditors: qianlishi qianlishi@anji-plus.com
|
||||||
|
* @LastEditTime: 2023-01-10 09:40:53
|
||||||
|
*/
|
||||||
|
|
||||||
|
export const widgetSelect = {
|
||||||
|
code: 'widget-select',
|
||||||
|
type: 'form',
|
||||||
|
tabName: '表单',
|
||||||
|
label: '下拉框',
|
||||||
|
icon: 'iconchaolianjie',
|
||||||
|
options: {
|
||||||
|
setup: [
|
||||||
|
{
|
||||||
|
type: 'el-input-text',
|
||||||
|
label: '图层名称',
|
||||||
|
name: 'layerName',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: '下拉框',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-text',
|
||||||
|
label: '默认值',
|
||||||
|
name: 'text',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: '超链接',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'vue-color',
|
||||||
|
label: '字体颜色',
|
||||||
|
name: 'color',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: '#FAD400',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'vue-color',
|
||||||
|
label: '字体背景',
|
||||||
|
name: 'background',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: 'rgba(115,170,229,.5)',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-select',
|
||||||
|
label: '关联图表',
|
||||||
|
name: 'assChart',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
selectOptions: [
|
||||||
|
{ code: 'center', name: '居中' },
|
||||||
|
{ code: 'left', name: '左对齐' },
|
||||||
|
{ code: 'right', name: '右对齐' },
|
||||||
|
],
|
||||||
|
value: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-select',
|
||||||
|
label: '触发事件',
|
||||||
|
name: 'event',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
selectOptions: [
|
||||||
|
{ code: 'change', name: 'change' },
|
||||||
|
{ code: 'blur', name: 'blur' },
|
||||||
|
{ code: 'focus', name: 'focus' },
|
||||||
|
],
|
||||||
|
value: 'change',
|
||||||
|
}
|
||||||
|
],
|
||||||
|
data: [
|
||||||
|
{
|
||||||
|
type: 'el-radio-group',
|
||||||
|
label: '数据类型',
|
||||||
|
name: 'dataType',
|
||||||
|
require: false,
|
||||||
|
placeholder: '',
|
||||||
|
selectValue: true,
|
||||||
|
selectOptions: [
|
||||||
|
{
|
||||||
|
code: 'staticData',
|
||||||
|
name: '静态数据',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
code: 'dynamicData',
|
||||||
|
name: '动态数据',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
value: 'staticData',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-button',
|
||||||
|
label: '静态数据',
|
||||||
|
name: 'staticData',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
relactiveDom: 'dataType',
|
||||||
|
relactiveDomValue: 'staticData',
|
||||||
|
value: [
|
||||||
|
{ "axis": "苹果", "data": 1000 },
|
||||||
|
{ "axis": "三星", "data": 2229 },
|
||||||
|
{ "axis": "小米", "data": 3879 },
|
||||||
|
{ "axis": "oppo", "data": 2379 },
|
||||||
|
{ "axis": "vivo", "data": 4079 },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'dycustComponents',
|
||||||
|
label: '',
|
||||||
|
name: 'dynamicData',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
relactiveDom: 'dataType',
|
||||||
|
relactiveDomValue: 'dynamicData',
|
||||||
|
chartType: 'widget-barchart',
|
||||||
|
dictKey: 'BAR_PROPERTIES',
|
||||||
|
value: '',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
position: [
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '左边距',
|
||||||
|
name: 'left',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '上边距',
|
||||||
|
name: 'top',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '宽度',
|
||||||
|
name: 'width',
|
||||||
|
required: false,
|
||||||
|
placeholder: '该容器在1920px大屏中的宽度',
|
||||||
|
value: 100,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '高度',
|
||||||
|
name: 'height',
|
||||||
|
required: false,
|
||||||
|
placeholder: '该容器在1080px大屏中的高度',
|
||||||
|
value: 40,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,87 @@
|
|||||||
|
<template>
|
||||||
|
<anji-select
|
||||||
|
ref="select"
|
||||||
|
:style="styleObj"
|
||||||
|
v-model="selectValue"
|
||||||
|
:localOptions="options"
|
||||||
|
label="text"
|
||||||
|
option="id"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "WidgetSelect",
|
||||||
|
props: {
|
||||||
|
value: Object,
|
||||||
|
ispreview: Boolean,
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
id: "选项1",
|
||||||
|
text: "黄金糕",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "选项2",
|
||||||
|
text: "双皮奶",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "选项3",
|
||||||
|
text: "蚵仔煎",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "选项4",
|
||||||
|
text: "龙须面",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "选项5",
|
||||||
|
text: "北京烤鸭",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
selectValue: "",
|
||||||
|
optionsStyle: {},
|
||||||
|
optionsData: {},
|
||||||
|
optionsSetup: {},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
styleObj() {
|
||||||
|
return {
|
||||||
|
position: this.ispreview ? "absolute" : "static",
|
||||||
|
width: this.optionsStyle.width + "px",
|
||||||
|
height: this.optionsStyle.height + "px",
|
||||||
|
left: this.optionsStyle.left + "px",
|
||||||
|
top: this.optionsStyle.top + "px",
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
value: {
|
||||||
|
handler(val) {
|
||||||
|
this.optionsSetup = val.setup;
|
||||||
|
this.optionsData = val.data;
|
||||||
|
this.optionsStyle = val.position;
|
||||||
|
},
|
||||||
|
deep: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.optionsSetup = this.value.setup;
|
||||||
|
this.optionsData = this.value.data;
|
||||||
|
this.optionsStyle = this.value.position;
|
||||||
|
},
|
||||||
|
methods: {},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
/deep/.el-select {
|
||||||
|
height: 100%;
|
||||||
|
.el-input {
|
||||||
|
height: 100%;
|
||||||
|
.el-input__inner {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in New Issue