OrgPost.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
<template>
  <div class="fullheight">
    <ht-table
      @load="loadData"
      :data="data"
      :pageResult="pageResult"
      :selection="true"
      :default-querys="[{property: 'o.ID_', value: this.orgId}]"
      quick-search-props="name"
      ref="htTable"
      :show-custom-column="false"
      :show-export="false"
      @row-click="rowClick"
      :header-cell-class-name="headerCellClassName"
      @selection-change="handleSelectionChange"
    >
      <template v-slot:toolbar>
        <el-button-group>
          <el-button
            size="small"
            type="primary"
            @click="showDialog()"
            icon="el-icon-plus"
            >添加岗位</el-button
          >
          <ht-delete-button
            :url="demDeleteUrl"
            :htTable="$refs.htTable"
            pk="code"
            parameter="postCodes"
            @after-delete="afterDelete"
            :disabled="isDisabled"
            >删除</ht-delete-button
          >
        </el-button-group>
      </template>
      <template>
        <ht-table-column type="index" width="50" align="center" label="序号" />
        <ht-table-column
          prop="name"
          label="岗位名称"
          width="300"
          :sortable="true"
          :show-overflow-tooltip="true"
        >
          <template v-slot="{row, column, $index}">
            <el-link
              type="primary"
              @click="handleCommand({row: row, command: 'edit'})"
              title="点击编辑"
              >{{ row.name }}</el-link
            >
          </template>
        </ht-table-column>
        <ht-table-column
          prop="code"
          label="岗位编码"
          :show-overflow-tooltip="true"
        />
        <ht-table-column prop="jobName" label="职务名称" />
        <ht-table-column
          prop="isCharge"
          label="是否责任岗位"
          width="150"
          :render-header="renderHeaderMethod"
          :filters="[
            {text: '否', value: '0'},
            {text: '是', value: '1'}
          ]"
        >
          <template v-slot="{row}">
            <el-tag type="danger" v-if="row.isCharge == '0'">否</el-tag>
            <el-tag type="success" v-if="row.isCharge == '1'">是</el-tag>
          </template>
        </ht-table-column>
        <ht-table-column width="270" label="操作">
          <template v-slot="{row}">
            <el-button
              type="text"
              @click="handleCommand({row: row, command: 'showInfo'})"
              >分配人员</el-button
            >
            <el-button
              type="text"
              @click="handleCommand({row: row, command: 'orgInfo'})"
              >岗位详情</el-button
            >
            <el-button
              type="text"
              @click="handleCommand({row: row, command: 'setPostMaster'})"
              v-if="row.isCharge"
              >取消责任岗位</el-button
            >
            <el-button
              type="text"
              @click="handleCommand({row: row, command: 'setPostMaster'})"
              v-else
              >设置责任岗位</el-button
            >
            <!-- <el-dropdown
              size="mini"
              split-button
              @command="handleCommand"
              @click="handleCommand({ row: row, command: 'showInfo' })"
            >
              <span> <i class="el-icon-edit"></i>分配人员 </span>
              <el-dropdown-menu slot="dropdown">
                <el-dropdown-item
                  icon="el-icon-s-home"
                  :command="{ row: row, command: 'orgInfo' }"
                  >岗位详情</el-dropdown-item
                >
                <el-dropdown-item
                  icon="el-icon-s-home"
                  :command="{ row: row, command: 'setPostMaster' }"
                  v-if="row.isCharge"
                  >取消责任岗位</el-dropdown-item
                >
                <el-dropdown-item
                  icon="el-icon-s-home"
                  :command="{ row: row, command: 'setPostMaster' }"
                  v-else
                  >设置责任岗位</el-dropdown-item
                >
              </el-dropdown-menu>
            </el-dropdown> -->
          </template>
        </ht-table-column>
      </template>
    </ht-table>

    <ht-sidebar-dialog
      width="32%"
      :title="title"
      :visible="dialogVisible"
      :before-close="handleClose"
      :append-to-body="true"
    >
      <el-form
        v-model="OrgPost"
        data-vv-scope="editForm"
        :label-position="position"
      >
        <ht-form-item label="职务名称" prop="name" label-width="100px">
          <ht-select
            filterable
            clearable
            v-model="OrgPost.jobCode"
            class="m-r"
            :options="job"
            :props="{key: 'groupCode', value: 'name'}"
            :validate="{required: true}"
          />
        </ht-form-item>
        <ht-form-item label="岗位名称" prop="code" label-width="100px">
          <ht-input
            v-model="OrgPost.name"
            autocomplete="off"
            :maxlength="30"
            show-word-limit
            :validate="{
              required: true,
              regex: {
                exp: '^[\\s\\S]{1,30}$',
                message: '内容不超出30字'
              }
            }"
            placeholder="岗位名称"
          ></ht-input>
        </ht-form-item>
        <ht-form-item label="岗位编码" prop="code" label-width="100px">
          <ht-input
            v-if="readOnly"
            v-model="OrgPost.code"
            :disabled="true"
          ></ht-input>
          <ht-input
            v-else
            v-model="OrgPost.code"
            autocomplete="off"
            v-pinyin="OrgPost.name"
            :maxlength="30"
            show-word-limit
            :validate="{
              required: true,
              alpha_num: true,
              regex: {
                exp: '^[\\s\\S]{1,30}$',
                message: '内容不超出30字'
              }
            }"
            placeholder="岗位编码"
          ></ht-input>
        </ht-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button @click="handleClose()">{{
          $t('eip.common.cancel')
        }}</el-button>
        <ht-submit-button
          :url="saveOrgPost"
          :model="OrgPost"
          :isSubmit="isSubmit"
          :requestMethod="requestMethod"
          scopeName="editForm"
          restoreUrl="${uc}/api/org/v1/orgPost/restoreByAlias/"
          aliasProp="code"
          @before-save-data="beforeSaveData"
          @after-save-data="afterSaveData"
          >{{ $t('eip.common.save') }}</ht-submit-button
        >
      </div>
    </ht-sidebar-dialog>

    <distrubutive-user ref="distrubutiveUser"></distrubutive-user>
    <ht-load-data
      :url="loadDataUrl"
      context="uc"
      @after-load-data="afterLoadData"
    ></ht-load-data>

    <ht-sidebar-dialog
      width="40%"
      title="查看岗位详情"
      :visible="diaType === 'showInfo'"
      :before-close="handleClose"
      :append-to-body="true"
    >
      <table class="form-table" cellspacing="0" cellpadding="0" border="0">
        <tbody>
          <tr>
            <th width="150px">岗位名称(编码):</th>
            <td>{{ OrgPost.name }}({{ OrgPost.code }})</td>
          </tr>
          <tr>
            <th width="150px">所属职务(编码):</th>
            <td>{{ OrgPost.jobName }}({{ OrgPost.jobCode }})</td>
          </tr>
          <tr>
            <th width="150px">所属组织(编码):</th>
            <td>{{ OrgPost.orgName }}({{ OrgPost.orgCode }})</td>
          </tr>
          <tr>
            <th width="150px">岗位人员:</th>
            <td>
              <el-table :data="postUser" style="width: 100%" height="200">
                <el-table-column prop="fullName" label="姓名" width="100" />
                <el-table-column prop="pathName" label="人员所属组织全路径" />
              </el-table>
            </td>
          </tr>
        </tbody>
      </table>
    </ht-sidebar-dialog>
  </div>
</template>
<script>
// 组织岗位
import org from '@/api/org.js'
import uc from '@/api/uc.js'
import EipUserDialog from '@/components/dialog/EipUserDialog.vue'
import DistrubutiveUser from './DistrubutiveUser'
import tableHeaderFilter from '@/mixins/tableHeaderFilter.js'
export default {
  name: 'org-post',
  props: ['orgId', 'orgCode'],
  components: {
    EipUserDialog,
    DistrubutiveUser
  },
  mixins: [tableHeaderFilter],
  computed: {

    demDeleteUrl: function() {
      return window.context.uc + '/api/org/v1/orgPost/deleteOrgPost'
    },
    saveOrgPost: function() {
      let preUrl = window.context.uc + '/api/org/v1/orgPost'
      this.OrgPost.orgCode = this.orgCode
      if (this.OrgPost.id) {
        preUrl += '/updateOrgPost'
      } else {
        preUrl += '/saveOrgPost'
      }
      return preUrl
    },
    requestMethod: function() {
      return 'POST'
    }
  },
  data() {
    return {
      position: 'right',
      title: '添加岗位',
      dialogVisible: false,
      dialogVisibleMenuPerm: false,
      OrgPost: {
        jobCode: '', //职务编码
        jobName: '', //职务名称
        name: '', //岗位名称
        code: '' //岗位编码
      },
      job: [],
      isSubmit: false,
      data: [],
      pageResult: {
        page: 1,
        pageSize: 50,
        total: 0
      },
      loadDataUrl: '',
      menuPerm: {},
      allowRoles: [],
      readOnly: false,
      distOrgUser: false, //分配岗位人员页面
      diaType: '',
      postUser: [],
      editDialog: false,
      selectedList: [],
      isDisabled: true
    }
  },
  watch: {
    selectedList: {
      handler(val) {
        this.isDisabled = val.length < 1 ? true : false
      },
      deep: true
    }
  },
  mounted() {
    this.$validator = this.$root.$validator
    uc.getJobPage({pageBean: {page: 1, pageSize: -1}}).then(resp => {
      this.job = resp.rows
    })
  },
  methods: {
    rowClick(row, column, event) {
      this.$refs.htTable.$refs.htTable.toggleRowSelection(row)
    },
    setDemDefault(row) {
      org.setDemDefault(row.code).then(() => {
        this.$refs.htTable.load()
      })
    },
    handleClose() {
      this.dialogVisible = false
      this.diaType = false
      this.editDialog = false
    },
    handleCloseMenuPerm() {
      this.dialogVisibleMenuPerm = false
    },
    showDialog(row) {
      this.title = '添加岗位'
      this.dialogVisible = true
      this.readOnly = false
      if (row) {
        var _code = `${row.code}`
        org.getOrgPost(_code).then(resp => {
          this.OrgPost = resp.value
        })
      } else {
        this.OrgPost = {name: '', code: '', jobName: '', jobCode: ''}
      }
    },
    dialogCancle(dialogVisible) {
      this[dialogVisible] = false
    },
    loadData(param, cb) {
      uc.getOrgPostPage(param)
        .then(rep => {
          this.data = rep.rows
          this.pageResult = {
            page: rep.page,
            pageSize: rep.pageSize,
            total: rep.total
          }
        })
        .finally(() => cb())
    },
    handleCommand(params) {
      this.readOnly = false
      switch (params.command) {
        case 'showInfo':
          this.readOnly = true
          this.$refs.distrubutiveUser.showDialog(params.row.id, params.row.code)
          break
        case 'orgInfo':
          this.diaType = 'showInfo'
          this.OrgPost = params.row
          org.getFullname(params.row.id).then(resp => {
            this.postUser = resp
          })
          break
        case 'setPostMaster':
          var isMain = false
          if (params.row.isCharge == 0) {
            isMain = true
          }
          org
            .setPostMaster({postCode: params.row.code, isMain: isMain})
            .then(() => {
              this.$refs.htTable.load()
            })
          break
        case 'edit':
          org.getOrgPost(params.row.code).then(resp => {
            this.OrgPost = {...this.OrgPost, ...resp.value}
            this.OrgPost.jobCode = params.row.jobCode
            this.readOnly = true
            this.dialogVisible = true
            this.title = '编辑岗位'
          })
          break
        default:
          break
      }
    },
    async beforeSaveData() {
      this.isSubmit = true
    },
    afterSaveData() {
      this.dialogVisible = false
      this.editDialog = false
      this.$refs.htTable.load()
    },
    afterDelete() {
      this.$refs.htTable.load()
    },
    afterLoadData(data) {
      // 编辑角色
      if (this.dialogVisible) {
        this.demension = data
        setTimeout(() => this.$validator.validateAll('editDemForm'))
      }
    },
    distOrgUserLoad(param, cb) {
      org
        .getOrgUserPage(param)
        .then(response => {
          this.data = response.rows
          this.pageResult = {
            page: response.page,
            pageSize: response.pageSize,
            total: response.total
          }
        })
        .finally(() => cb())
    },
    handleSelectionChange(selection) {
      this.selectedList = selection
    }
  }
}
</script>
<style lang="scss" scoped>
::v-deep {
  .cell > .el-table__column-filter-trigger {
    display: none;
  }
}

div[aria-invalid='true'] >>> .el-input__inner,
div[aria-invalid='true'] >>> .el-input__inner:focus {
  border-color: #f56c6c;
}
</style>