| | |
| | | <el-table-column prop="parentName" show-overflow-tooltip label="上级区划名称" /> |
| | | <el-table-column prop="regionLevel" show-overflow-tooltip label="区划级别"> |
| | | <template v-slot="{ row }"> |
| | | {{ getDictLabel(row.regionLevel, dictObj.divisionLevel) }} |
| | | {{ getDictLabel(row.regionLevel, dictObj.regionLevel) }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="sort" show-overflow-tooltip label="排序" /> |
| | |
| | | |
| | | // 获取字典列表 |
| | | function getDictList() { |
| | | return getDictionaryByCode('zoningStatus,divisionLevel').then(res => { |
| | | return getDictionaryByCode('zoningStatus,regionLevel').then(res => { |
| | | dictObj.value = res.data.data |
| | | }) |
| | | } |