This commit is contained in:
pushuo 2022-07-27 11:20:54 +08:00
parent f62926bc81
commit 43f3771b17
1 changed files with 6 additions and 0 deletions

View File

@ -136,6 +136,12 @@
if (type == 'edit') {
let tax = this.regions[index];
tax.region_zones.forEach(e => {
$http.get(`countries/${e.country_id}/zones`).then((res) => {
this.$set(e, 'zones', res.data.zones)
})
})
this.dialog.form = {
id: tax.id,
name: tax.name,