loulijun2021
2023-06-25 0ee16193f6ede38950215bd74b49d58b779595a5
src/views/reportManager/groupSalaryList.vue
@@ -486,8 +486,6 @@
      width="800px"
      :close-on-click-modal="false"
      top="15vh"
      @closed="handleClose"
      @close="handleClose"
    >
      <div style="height: 300px;width: 100%;background-color: aliceblue;padding:20px">
        <el-tag
@@ -790,7 +788,22 @@
    },
    tableRowClassName({ row, rowIndex }) {
      return 'custom-row'
    },
    // 修改按钮
    async edit(operation, row) {
      this.operation = operation
      this.dialogVisible = true
      const res = await GroupSalaryReportSearchUser({ id: row.id })
      this.tagArr = res.data.map(r => r.username)
      // this.tagArr = ['楼李俊', '张三', '李四']
      // this.$nextTick(() => {
      //   this.dialogForm.OrgCode = row.org_code
      //   this.dialogForm.OrgName = row.org_name
      //   this.dialogForm.SupUnit = row.parent_id
      // })
    }
  }
}
</script>