# Select

下拉框

案例
import { Select, Typography } from "sl-vue2-template";
import { defineComponent } from "vue";

const { P } = Typography;

export default defineComponent({
  data() {
    return {
      value: 1,
      options: [
        {
          value: 1,
          label: "Test1",
        },
        {
          value: 2,
          label: "Test2",
        },
        {
          value: 3,
          label: "Test3",
          disabled: true,
        },
      ],
      valueA: "1",
      optionsA: [
        {
          value: "1",
          label: "Test1",
        },
        {
          value: "2",
          label: "Test2",
        },
        {
          value: "3",
          label: "Test3",
        },
      ],
      valueB: 0,
      optionsB: [
        {
          value: 1,
          label: "Test1Test1Test1Test1Test1Test1",
        },
        {
          value: 2,
          label: "Test2",
        },
        {
          value: 3,
          label: "Test3",
        },
        {
          value: 4,
          label: "Test4",
          disabled: true,
        },
        {
          value: 5,
          label: "Test5",
        },
        {
          value: 6,
          label: "Test6",
        },
        {
          value: 7,
          label: "测试",
        },
      ],
      valueC: [1, 2],
      OptionsC: [
        {
          value: 1,
          label: "Test1Test1Test1Test1Test1Test1",
        },
        {
          value: 2,
          label: "Test2",
          default: true,
        },
        {
          value: 3,
          label: "Test3",
        },
        {
          value: 4,
          label: "Test4",
          disabled: true,
        },
        {
          value: 5,
          label: "Test5",
        },
        {
          value: 6,
          label: "Test6",
        },
        {
          value: 7,
          label: "测试",
        },
      ],
    };
  },
  methods: {
    onChange(value: number) {
      this.value = value;
    },
  },
  render() {
    return (
      <div>
        <Select
          value={this.value}
          options={this.options}
          handlerChange={(value) => {
            this.onChange(value);
          }}
          animation={false}
        />
        <Select
          value={this.value}
          options={this.options}
          handlerChange={(value) => {
            this.onChange(value);
          }}
          disabled
        />
        <Select
          value={this.valueA}
          options={this.optionsA}
          handlerChange={(value) => {
            this.valueA = value;
          }}
          hiddenIcon
        />
        <P>Search</P>
        <Select.Search
          value={this.valueB}
          options={this.optionsB}
          handlerChange={(value) => {
            this.valueB = value;
          }}
        />
        <Select.Search
          value={this.valueB}
          options={this.optionsB}
          handlerChange={(value) => {
            this.valueB = value;
          }}
          disabled
        />
        <Select.Search
          value={this.valueB}
          options={this.optionsB}
          handlerChange={(value) => {
            this.valueB = value;
          }}
          hiddenIcon
        />
        <P>Multiple</P>
        <Select.Multiple
          value={this.valueC}
          options={this.OptionsC}
          handlerChange={(value) => {
            this.valueC = value;
          }}
        />
        <Select.Multiple
          value={this.valueC}
          options={this.OptionsC}
          handlerChange={(value) => {
            this.valueC = value;
          }}
          disabled
        />
      </div>
    );
  },
});
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182

普通下拉框/带搜索功能的下拉框

# 属性

成员 说明 类型 必须 默认值 版本
value 已选值 String|Number -- --
options 拉下选项 查看 options 属性 -- --
disabled 禁用 Boolean false --
suffixIcon 后置图标 icon 名 -- --
hiddenIcon 隐藏 icon Boolean false --
animation 动画效果 Boolean true --
className 自定义 class 名 String -- --

# 事件

事件名称 说明 回调参数 必须 版本
handlerChange value 变化的回调 (value: String|Number ) => void --

# Select.Multiple

多选模式的下拉框

# 属性

成员 说明 类型 必须 默认值 版本
value 已选值 String[]|Number[] -- --
options 拉下选项 查看 options 属性 -- --
disabled 禁用 Boolean false --
animation 动画效果 Boolean true --
className 自定义 class 名 String -- --

# 事件

事件名称 说明 回调参数 必须 版本
handlerChange value 变化的回调 (value: String[]|Number[] ) => void --

# Option 属性

成员 说明 类型 必须 默认值 版本
value 选项值 String|Number -- --
label 选项文本 String -- --
disabled 禁用 Boolean false --
default 默认选中,(当使用 Select.Multiple 的时候有效) Boolean false --
上次更新: 3/31/2023, 11:27:59 AM