yangfeng
2023-07-10 8e7cd003414ea4ca8f42fb3171de18f8839ece17
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
<template>
  <div class="common-select">
    <el-select v-model="commonDefautValue" placeholder="请选择" class="common-select-sel" size="mini">
      <el-option v-for="item in commonOptions" :key="item.value" :label="item.label" :value="item.value"> </el-option>
    </el-select>
    <div class="common-select-btn">
      <i class="el-icon-setting"></i>
    </div>
  </div>
</template>
 
<script>
export default {
  name: "CommonSelectView",
  props: {
    commonValue: {
      type: String,
      default: ""
    },
    commonOptions: {
      type: Array,
      default: () => []
    }
  },
  data() {
    return {
      commonDefautValue: this.commonValue
    }
  },
  methods: {}
}
</script>
 
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style lang="scss" scoped>
.common-select {
  display: flex;
  .common-select-sel {
    width: 270px;
  }
  .common-select-btn {
    margin-left: 5px;
    font-size: 16px;
  }
}
</style>