select-season.vue
1.22 KB
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
<template>
<Select :value="handleValue" @on-change="updateValue" :disabled="disable" placeholder="请选择" style="width: 400px;">
<Option :value="season.id" v-for="season in seasonList" :key="season.id">{{season.label}}</Option>
</Select>
</template>
<script>
export default {
name: 'select-season',
props: {
value: {
type: String
},
disable: {
type: Boolean
}
},
data() {
return {
handleValue: this.value,
seasonList: [{
id: '1',
label: '春季'
}, {
id: '2',
label: '夏季'
}, {
id: '3',
label: '秋季'
}, {
id: '4',
label: '冬季'
}, {
id: '5',
label: '春夏季'
}, {
id: '6',
label: '秋冬季'
}]
};
},
methods: {
updateValue(newValue) {
this.$emit('input', newValue);
}
},
watch: {
value(newValue) {
this.handleValue = newValue;
}
}
};
</script>
<style>
</style>