Browse Source

完善公告型号

zhanglei
yunuo970428 2 years ago
parent
commit
b957bbe827
  1. 11
      anrui-scm/anrui-scm-ui/src/views/othermenu/affichetype/gonggaoAdd.vue

11
anrui-scm/anrui-scm-ui/src/views/othermenu/affichetype/gonggaoAdd.vue

@ -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) => {

Loading…
Cancel
Save