|
|
@ -151,6 +151,11 @@ export default { |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
init() { |
|
|
|
typeValues({ type: 'ggxh_clmc' }).then((res) => { |
|
|
|
if (res.success) { |
|
|
|
this.car_list = res.data |
|
|
|
} |
|
|
|
}) |
|
|
|
typeValues({ type: 'suspension' }).then((res) => { |
|
|
|
if (res.success) { |
|
|
|
this.plateReedNum_list = res.data |
|
|
@ -217,6 +222,12 @@ export default { |
|
|
|
dataDelete(index) { |
|
|
|
this.formobj.baseAnnouncementmodelParams.splice(index, 1) |
|
|
|
}, |
|
|
|
changeCar(value) { |
|
|
|
const choose = this.car_list.filter((item) => item.dictValue === value) |
|
|
|
if (choose.length > 0) { |
|
|
|
this.formobj.vehNameKey = choose[0].dictKey |
|
|
|
} |
|
|
|
}, |
|
|
|
changePlateReedNum(value, row) { |
|
|
|
let bb = null |
|
|
|
this.plateReedNum_list.forEach((e) => { |
|
|
|