PostManager.vue 13.3 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
<template>
  <div class="fullheight">
    <ht-table
      @load="loadData"
      :data="data"
      :pageResult="pageResult"
      :selection="true"
      :quick-search-props="[
        {prop: 'name', label: '岗位名称'},
        {prop: 'p.CODE_', label: '岗位编码'},
        {prop: 'j.NAME_', label: '职务名称'},
      ]"
      :show-custom-column="false"
      :show-export="false"
      ref="htTable"
      @row-click="rowClick"
      @selection-change="handleSelectionChange"
    >
      <template v-slot:toolbar>
        <!-- <el-button-group> -->
        <el-button
          size="small"
          @click="showDialog()"
          icon="el-icon-plus"
          type="primary"
          >添加</el-button
        >
        <ht-delete-button
          :url="demDeleteUrl"
          :htTable="$refs.htTable"
          parameter="postCodes"
          pk="code"
          @after-delete="afterDelete"
          :disabled="isDisabled"
          style="margin-left: 10px"
          >删除</ht-delete-button
        >
        <el-button
          size="small"
          @click="showJobDialog()"
          icon="el-icon-s-cooperation"
          :disabled="isDisabled"
          >设置职务</el-button
        >
        <el-button
          size="small"
          @click="showOrgDialog()"
          icon="el-icon-s-operation"
          :disabled="isDisabled"
          >变更所属组织</el-button
        >
        <!-- </el-button-group> -->
      </template>
      <template>
        <ht-table-column type="index" width="50" align="center" label="序号" />
        <ht-table-column
          prop="name"
          label="岗位名称"
          :sortable="true"
          :show-overflow-tooltip="true"
          width="200"
        >
          <template v-slot="{row}">
            <el-link
              type="primary"
              @click="handleCommand({row: row, command: 'assignMenu'})"
              title="点击编辑"
              >{{ row.name }}</el-link
            >
          </template>
        </ht-table-column>
        <ht-table-column
          prop="code"
          label="岗位编码"
          width="150"
          :show-overflow-tooltip="true"
        />
        <ht-table-column
          prop="jobName"
          label="职务名称"
          width="200"
          :show-overflow-tooltip="true"
        />
        <ht-table-column
          prop="pathName"
          label="组织路径"
          :show-overflow-tooltip="true"
        />
        <ht-table-column label="操作" width="150" align="left">
          <template v-slot="{row}">
            <el-button
              size="mini"
              type="text"
              @click="handleCommand({row: row, command: 'disPersonnel'})"
              >分配人员</el-button
            >
          </template>
        </ht-table-column>
      </template>
    </ht-table>

    <ht-sidebar-dialog
      width="32%"
      :title="(diaType == 'add' ? '添加' : '编辑') + '岗位'"
      :visible="dialogVisible"
      :before-close="handleClose"
      :append-to-body="true"
      class="elForm"
    >
      <el-form v-model="orgPost" data-vv-scope="editDemForm" v-form>
        <ht-form-item label="所属职务" label-width="100px">
          <!--          <ht-select-->
          <!--            v-model="orgPost.jobCode"-->
          <!--            class="m-r"-->
          <!--            :options="jobs"-->
          <!--            :props="{key:'groupCode',value:'name'}"-->
          <!--            :validate="{required:true}"-->
          <!--          />-->
          <ht-job-selector-input
            v-model="orgPost.jobName"
            :config="{code: 'orgPost.jobCode'}"
            :validate="{required: true}"
            :single="true"
            append-to-body
          />
        </ht-form-item>
        <ht-form-item label="岗位名称" prop="name" label-width="100px">
          <ht-input
            v-model="orgPost.name"
            autocomplete="off"
            :validate="{
              required: true,
              regex: {
                exp: '^[\\s\\S]{1,30}$',
                message: '内容超出输入限制',
              },
            }"
            placeholder="请输入名称"
          ></ht-input>
        </ht-form-item>
        <ht-form-item label="岗位编码" prop="code" label-width="100px">
          <ht-input
            v-model="orgPost.code"
            v-pinyin="orgPost.name"
            autocomplete="off"
            :validate="{
              required: true,
              alpha_dash: true,
              regex: {
                exp: '^[\\s\\S]{1,30}$',
                message: '内容超出输入限制',
              },
            }"
            placeholder="请输入别名"
            :disabled="diaType != 'add'"
          ></ht-input>
        </ht-form-item>
        <ht-form-item label="岗位组织" label-width="100px">
          <ht-input
            v-model="orgPost.orgName"
            readonly
            placeholder="选择岗位组织"
            :validate="{required: true}"
          />
          <el-button @click="selectOrg" type="primary" size="mini" style="margin-left: 5px;"
            >选择岗位组织</el-button
          >
        </ht-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button @click="dialogCancle('dialogVisible')">{{
          $t('eip.common.cancel')
        }}</el-button>
        <ht-submit-button
          :url="saveRoleUrl"
          :model="orgPost"
          :isSubmit="isSubmit"
          :requestMethod="requestMethod"
          scopeName="editDemForm"
          @before-save-data="beforeSaveData"
          @after-save-data="afterSaveData"
          :restoreUrl="restoreUrl"
          aliasProp="code"
          >{{ $t('eip.common.save') }}</ht-submit-button
        >
      </div>
    </ht-sidebar-dialog>

    <ht-sidebar-dialog
      width="40%"
      title="查看岗位详情"
      :visible="diaType === 'showInfo'"
      :before-close="handleClose"
    >
      <table class="form-table" cellspacing="0" cellpadding="0" border="0">
        <tbody>
          <tr>
            <th width="150px">岗位名称(编码):</th>
            <td>{{ orgPost.name }}({{ orgPost.id }})</td>
          </tr>
          <tr>
            <th width="150px">所属职务(编码):</th>
            <td>{{ orgPost.jobName }}({{ orgPost.relDefId }})</td>
          </tr>
          <tr>
            <th width="150px">所属组织(编码):</th>
            <td>{{ orgPost.orgName }}({{ orgPost.orgId }})</td>
          </tr>
          <tr>
            <th width="150px">岗位人员:</th>
            <td>
              <el-table
                :data="postUser"
                style="width: 100%"
                height="200"
                border="true"
              >
                <el-table-column prop="fullName" label="姓名" width="100" />
                <el-table-column prop="pathName" label="人员所属组织全路径" />
              </el-table>
            </td>
          </tr>
        </tbody>
      </table>
    </ht-sidebar-dialog>

    <!-- 组织选择对话框  -->
    <ht-org-post-dialog
      ref="eipOrgDialog"
      @on-confirm="eipOrgDialogOk"
      single
      append-to-body
    />

    <distrubutive-user ref="distrubutiveUser"></distrubutive-user>
    <!-- 职务对话框 -->
    <ht-job-dialog
      ref="jobSelectRef"
      append-to-body
      single
      @on-confirm="getJobData"
    ></ht-job-dialog>
  </div>
</template>
<script>
import org from '@/api/org.js'
const eipOrgDialog = () => import('@/components/dialog/EipOrgDialog.vue')
import distrubutiveUser from './DistrubutiveUser'
export default {
  components: {
    eipOrgDialog,
    distrubutiveUser,
  },
  computed: {
    demDeleteUrl: function () {
      return window.context.uc + '/api/org/v1/orgPost/deleteOrgPost'
    },
    restoreUrl: function () {
      return window.context.uc + '/api/org/v1/orgPost/restoreByAlias/'
    },
    saveRoleUrl: function () {
      let preUrl = window.context.uc + '/api/org/v1/orgPost'
      if (this.orgPost.id) {
        preUrl += '/updateOrgPost'
      } else {
        preUrl += '/saveOrgPost'
      }
      return preUrl
    },
    requestMethod: function () {
      return 'POST'
    },
  },
  data() {
    return {
      dialogVisible: false,
      dialogVisibleMenuPerm: false,
      orgPost: {
        name: '',
        code: '',
        jobCode: '',
        jobName: '',
        orgName: '',
        orgCode: '',
      },
      isSubmit: true,
      data: [],
      pageResult: {
        page: 1,
        pageSize: 50,
        total: 0,
      },
      loadDataUrl: '',
      menuPerm: {},
      allowRoles: [],
      diaType: '',
      jobs: [],
      postUser: [],
      readOnly: true,
      tempOrgPost: {},
      isDisabled: true, //按钮的禁用
      selectedList: [],
      isAllOrgChanged: false,
    }
  },
  watch: {
    // 监听选中下
    selectedList: {
      handler(val) {
        this.isDisabled = val.length < 1 ? true : false
      },
      deep: true,
    },
  },
  mounted() {
    this.$validator = this.$root.$validator
  },
  methods: {
    handleSelectionChange(selection) {
      this.selectedList = selection
    },
    rowClick(row, column, event) {
      this.$refs.htTable.$refs.htTable.toggleRowSelection(row)
    },
    selectOrg() {
      this.isAllOrgChanged = false
      this.$refs['eipOrgDialog'].showDialog()
    },
    setDemDefault(row) {
      org.setDemDefault(row.code).then(() => {
        this.$refs.htTable.load()
      })
    },
    handleClose() {
      this.dialogVisible = false
      this.diaType = 'close'
      this.loadDataUrl = ''
    },
    handleCloseMenuPerm() {
      this.dialogVisibleMenuPerm = false
    },
    showDialog(row) {
      this.dialogVisible = true
      if (row) {
        this.orgPost = {...row}
      } else {
        this.orgPost = this.$options.data().orgPost
        this.loadDataUrl = ''
        this.diaType = 'add'
      }
      if (this.diaType === 'showInfo') {
        this.dialogVisible = false
      }
    },
    dialogCancle(dialogVisible) {
      this[dialogVisible] = false
    },
    loadData(param, cb) {
      org
        .getOrgPostPage(param)
        .then((response) => {
          this.data = response.rows
          this.pageResult = {
            page: response.page,
            pageSize: response.pageSize,
            total: response.total,
          }
        })
        .finally(() => cb())
    },
    handleCommand(params) {
      this.readOnly = false
      switch (params.command) {
        case 'showInfo':
          this.diaType = 'showInfo'
          // this.showDialog(params.row)
          this.orgPost = params.row
          org.getFullname(params.row.id).then((resp) => {
            this.postUser = resp
          })
          break
        case 'assignMenu':
          this.diaType = 'edit'
          this.showDialog(params.row)
          break
        case 'disPersonnel':
          this.$refs.distrubutiveUser.showDialog(params.row.id, params.row.code)
          break
        default:
          break
      }
    },
    async beforeSaveData() {
      this.isSubmit = true
    },
    afterSaveData() {
      this.dialogVisible = false
      this.$refs.htTable.load()
    },
    afterDelete() {
      this.$refs.htTable.load()
    },
    eipOrgDialogOk(data) {
      if (this.isAllOrgChanged) {
        if (data && data.length > 0) {
          let codes = this.selectedList.map((item) => item.code)
          let params = {codes: codes, orgId: data[0].id}
          org.setBatchUpdatePostOrg(params).then((resp) => {
            if (resp && resp.state) {
              this.$message.success(resp.message)
              this.$refs.htTable.load()
            }
          })
        }
      } else {
        if (data.length > 1) {
          this.$message.error('岗位组织不能选择多个')
          return
        }
        if (this.tempOrgPost.orgId && this.tempOrgPost.orgId != data[0].id) {
          let this_ = this
          this.$confirm(
            '修改所属组织,保存后当前岗位下的人员会一并转移到新组织下',
            '提示',
            {
              cancelButtonText: '取消',
              confirmButtonText: '确定',
              type: 'warning',
              closeOnClickModal: false,
            }
          ).then(() => {
            this_.orgPost.orgCode = data[0].code
            this_.$set(this.orgPost, 'orgName', data[0].name)
          })
        } else {
          this.orgPost.orgCode = data[0].code
          this.$set(this.orgPost, 'orgName', data[0].name)
        }
      }
    },
    async showJobDialog() {
      await this.$nextTick()
      this.$refs.jobSelectRef.showDialog()
    },
    getJobData(v) {
      if (v && v.length > 0) {
        let codes = this.selectedList.map((item) => item.code)
        let params = {codes: codes, jobCode: v[0].code}
        org.setBatchUpdateOrgJob(params).then((resp) => {
          if (resp && resp.state) {
            this.$message.success(resp.message)
            this.$refs.htTable.load()
          }
        })
      }
    },
    async showOrgDialog() {
      await this.$nextTick()
      this.isAllOrgChanged = true
      this.$refs.eipOrgDialog.showDialog()
    },
  },
}
</script>
<style scoped lang="scss">
div[aria-invalid='true'] >>> .el-input__inner,
div[aria-invalid='true'] >>> .el-input__inner:focus {
  border-color: #f56c6c;
}
::v-deep.elForm {
  .el-form-item__content {
    display: flex;
    .inputs {
      width: 100% !important;
    }
  }
}
</style>