前端回显分类 回显有时显示键值(判断条件:看是否有值传入)

 

案源提供人信息

 
  
   superviseList: [{
          isSpDept: "Y",
          superviseName: "",
          superviseDept: "",
        },],

根据superviseDept是否有传入值 进行回显选择

combinedUserList  是两个回显list的合并值   合并值看之前内容

根据判断 看是否正确回显数据  (此时修改前 表单组件表格 有时候显示字典键值)

   userList: [],
      otherUserList: [],
      combinedUserList: [],
  created() {
    listCheckUser(2, true).then((response) => {
      this.userList = response.rows.map((d) => {
        d.label = `${d.nickName}`;
        return d;
      });

      this.combinedUserList = this.userList.concat(this.otherUserList);
    });

前端回显分类 回显有时显示键值(判断条件:看是否有值传入)_第1张图片

你可能感兴趣的:(若依问题一览,前端页面,前端,vue.js,elementui)