工程管理

This commit is contained in:
itcast 2025-11-18 10:02:29 +08:00
parent 6f05db2107
commit 207746253b
1 changed files with 2 additions and 2 deletions

View File

@ -577,7 +577,7 @@ export default {
// areaCode valuename label
this.provinceOptions = res.data.map(item => ({
value: item.areaCode, //
label: item.name //
label: item.short_name //
}))
} else {
Message.error('加载省份失败:' + (res.message || '未知错误'))
@ -610,7 +610,7 @@ export default {
if (res.code === 200) {
this.cityOptions = res.data.map(item => ({
value: item.areaCode,
label: item.name
label: item.short_name
}))
} else {
Message.error('加载城市失败')