Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
zhutianqi
2021-08-09 17:15:21 +08:00
@@ -458,8 +458,22 @@ export default {
_this: this _this: this
}, res => { }, res => {
this.myLoading.loadData = false this.myLoading.loadData = false
this.nonList = res.data.records
this.total = res.data.total this.total = res.data.total
this.nonList = res.data.records
this.nonList.forEach(item => {
// 责任部门转换
if (item.responsibleUnit !== null || item.responsibleUnit !== "") {
let k = (item.responsibleUnit || "").split(",");
for (let i in this.zrbmOptions) {
for (let m = 0; m < k.length; m++) {
if (this.zrbmOptions[i].value === k[m]) {
k[m] = this.zrbmOptions[i].label;
}
item.responsibleUnit = k.join(",");
}
}
}
});
}, e => { }, e => {
this.myLoading.loadData = false this.myLoading.loadData = false
}) })
@@ -665,18 +679,15 @@ export default {
}, },
}, },
mounted () { mounted () {
// 从数据库中查询各下拉框数据 // 从数据库中查询各下拉框数据
this.$http.get('sys/dictype/getDicTypeListCode', '', { this.$http.get('sys/dictype/getDicTypeListCode', '', {
_this: this _this: this
}, res => { }, res => {
this.allSelectOptions = res.data || {}
this.zrbmOptions = res.data.ZRBMCLASS // 责任部门 this.zrbmOptions = res.data.ZRBMCLASS // 责任部门
this.zrbmOptions = res.data.ZRBMCLASS // 责任部门 this.getTableByPage()
this.getGzzOption()
this.setMap(this.standStateOptions)
}, e => { }, e => {
}) })
this.getTableByPage()
// 加载所有的部门 // 加载所有的部门
this.getOrgTreeSource() this.getOrgTreeSource()
} }