element table列表项展示省市区

发布时间 2023-07-24 16:41:05作者: 小小兴

使用的省市区插件 npm install element-china-area-data -S

引用import { provinceAndCityData, regionData, provinceAndCityDataPlus, regionDataPlus, CodeToText, TextToCode } from 'element-china-area-data'

绑定formatter的方法
<el-table-column align="center" :formatter="getProvince" />

绑定当前选中的值

<el-cascader
style="width: 100%"
:options="options"
v-model="form.areaOptions"
@change="addressChoose"

在methods使用方法
getProvince(row,colum){ //转码 if(row.areac && row.areac) { return CodeToText[row.areac] +'-'+ CodeToText[row.area]; } }, addressChoose(value) { //选中值发生变化 this.form.areaOptions = [value[0],value[1]] },