【bug】

1. 法规标准库必传
2. 运输保障机构信息管理部分字段修改不生效
pet
shanao 2024-12-11 16:52:08 +08:00
parent cfdb68dafb
commit 05ad8a6e2c
2 changed files with 7 additions and 1 deletions

View File

@ -123,6 +123,9 @@ export default {
CONTENT: [
{ required: true, message: '内容不能为空', trigger: 'change' }
],
TYPE_DIC_ID: [
{ required: true, message: '类型不能为空', trigger: 'change' }
]
},
filterText: '',
@ -206,7 +209,6 @@ export default {
RegulationsEdit() {
this.listLoading = true
this.form.FILE_URL = this.uploadfileurl
debugger
requestFN(
'/regulations/' + this.msg,
this.form

View File

@ -631,6 +631,10 @@ export default {
},
dataSave() {
this.listLoading = true
// mybatis-plus
this.form.ORG_TYPE = this.form.ORG_TYPE == null ? '' : this.form.ORG_TYPE
this.form.ADMINISTRATIVE_REGION = this.form.ADMINISTRATIVE_REGION == null ? '' : this.form.ADMINISTRATIVE_REGION
this.form.SUPERVISING_UNIT = this.form.SUPERVISING_UNIT == null ? '' : this.form.SUPERVISING_UNIT
requestFN('/major/transportation/save', this.form).then((data) => {
this.listLoading = false
this.dialogFormEdit = false