AddresSelect.vue 821 B

12345678910111213141516171819202122232425
  1. <template>
  2. <el-select :size="size" @change="handleSelectTotalAddress" :style="{ width: selectContainerWidth + 'px' }" v-model="selectValue" placeholder="请选择区域">
  3. <el-option v-for="address in addressList" :key="address.value" :label="address.label" :value="address.value"></el-option>
  4. </el-select>
  5. </template>
  6. <script>
  7. import { getTextWidth } from '../utils/utils'
  8. import selectMixin from '../mixin/select'
  9. export default {
  10. mixins: [selectMixin('addressList')],
  11. data() {
  12. return {
  13. selectContainerWidth: getTextWidth('佛山市')
  14. }
  15. },
  16. methods: {
  17. handleSelectTotalAddress(e) {
  18. const currentselectValue = this.addressList.find((item) => item.value === e)
  19. this.selectContainerWidth = getTextWidth(currentselectValue.label)
  20. }
  21. }
  22. }
  23. </script>