|
@@ -564,7 +564,7 @@ export default {
|
|
|
getDeptName(id) {
|
|
|
let name = ''
|
|
|
this.deptList.forEach(dept => {
|
|
|
- if (dept.id === id) {
|
|
|
+ if (String(dept.id) === id) {
|
|
|
name = dept.label
|
|
|
return
|
|
|
}
|
|
@@ -576,19 +576,16 @@ export default {
|
|
|
},
|
|
|
filterDept(deptChildren, id) {
|
|
|
let name = ''
|
|
|
- let isFind = false
|
|
|
deptChildren.forEach(dept => {
|
|
|
- if (dept.id === id) {
|
|
|
+ if (String(dept.id) === id) {
|
|
|
name = dept.label
|
|
|
- isFind = true
|
|
|
+ return name
|
|
|
}
|
|
|
if (dept.children != null) {
|
|
|
- this.filterDept(dept.children, id)
|
|
|
+ name = this.filterDept(dept.children, id)
|
|
|
}
|
|
|
})
|
|
|
- if (isFind) {
|
|
|
- return name
|
|
|
- }
|
|
|
+ return name
|
|
|
},
|
|
|
// 取消按钮
|
|
|
cancel() {
|
|
@@ -656,6 +653,12 @@ export default {
|
|
|
/** 提交按钮 */
|
|
|
submitForm() {
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
+ const dept = this.form.deptId
|
|
|
+ if (dept.length <= 0 || dept == null) {
|
|
|
+ this.form.deptId = null
|
|
|
+ } else {
|
|
|
+ this.form.deptId = dept[dept.length-1]
|
|
|
+ }
|
|
|
if (valid) {
|
|
|
if (this.form.id != null) {
|
|
|
updateAsset(this.form).then(response => {
|