<template>
|
<a-card :bordered="false">
|
<!-- 查询区域 -->
|
<div class="table-page-search-wrapper">
|
<a-form layout="inline" @keyup.enter.native="searchQuery">
|
<a-row :gutter="24">
|
</a-row>
|
</a-form>
|
</div>
|
<!-- 查询区域-END -->
|
|
<!-- 操作按钮区域 -->
|
<div class="table-operator" v-if="this.workCenterId">
|
<a-button
|
@click="handleAdd"
|
type="primary"
|
icon="plus"
|
>新增人员</a-button>
|
<a-dropdown v-if="selectedRowKeys.length > 0">
|
<a-menu slot="overlay">
|
<a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>取消分配</a-menu-item>
|
</a-menu>
|
<a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>
|
</a-dropdown>
|
</div>
|
|
<!-- table区域-begin -->
|
<div>
|
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
|
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
|
<a style="margin-left: 24px" @click="onClearSelected">清空</a>
|
</div>
|
<a-table
|
ref="table"
|
size="middle"
|
:scroll="{x:true}"
|
bordered
|
rowKey="id"
|
:columns="columns"
|
:dataSource="dataSource"
|
:pagination="ipagination"
|
:loading="loading"
|
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
|
class="j-table-force-nowrap"
|
@change="handleTableChange">
|
|
<template slot="htmlSlot" slot-scope="text">
|
<div v-html="text"></div>
|
</template>
|
<template slot="imgSlot" slot-scope="text,record">
|
<span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
|
<img v-else :src="getImgView(text)" :preview="record.id" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/>
|
</template>
|
<template slot="fileSlot" slot-scope="text">
|
<span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
|
<a-button
|
v-else
|
:ghost="true"
|
type="primary"
|
icon="download"
|
size="small"
|
@click="downloadFile(text)">
|
下载
|
</a-button>
|
</template>
|
|
<span slot="action" slot-scope="text, record">
|
<a-popconfirm title="确定取消分配吗?" @confirm="() => handleDelete(record.id)">
|
<a>取消分配</a>
|
</a-popconfirm>
|
</span>
|
|
</a-table>
|
</div>
|
<work-center-user-modal
|
ref="modalForm"
|
@ok="modalFormOk"
|
:enterpriseId="enterpriseId"
|
:departId="departId"
|
:workCenterId="workCenterId"
|
:userIdList="userIdList"
|
></work-center-user-modal>
|
</a-card>
|
</template>
|
<script>
|
import '@/assets/less/TableExpand.less'
|
import { mixinDevice } from '@/utils/mixin'
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
import WorkCenterUserModal from './WorkCenterUserModal'
|
import { getAction } from '../../../../api/manage'
|
|
export default {
|
name: 'WorkCenterUserList',
|
mixins:[JeecgListMixin, mixinDevice],
|
components: {
|
WorkCenterUserModal
|
},
|
props:{
|
workCenterId:{
|
type: String,
|
default: '',
|
required: false
|
},
|
enterpriseId:{
|
type: String,
|
default: '',
|
required: false
|
},
|
departId:{
|
type: String,
|
default: '',
|
required: false
|
},
|
versionStatus:{
|
type: String,
|
default: '',
|
required: false
|
}
|
},
|
watch:{
|
workCenterId:{
|
immediate: true,
|
handler(val) {
|
if(!this.workCenterId){
|
this.clearList()
|
}else{
|
this.queryParam['workCenterId'] = val;
|
this.queryParam['delFlag'] = '0';
|
this.loadData(1);
|
this.selectedRowKeys=[];
|
}
|
}
|
}
|
},
|
data () {
|
return {
|
description: 'mom_base_work_center_user管理页面',
|
userIdList:'',
|
// 表头
|
columns: [
|
{
|
title: '#',
|
dataIndex: '',
|
key:'rowIndex',
|
align:"center",
|
customRender:function (t,r,index) {
|
return parseInt(index)+1;
|
}
|
},
|
{
|
title:'姓名',
|
align:"center",
|
dataIndex: 'realName',
|
width:480
|
},
|
{
|
title:'所属部门',
|
align:"center",
|
dataIndex: 'departName',
|
width:480
|
},
|
{
|
title: '操作',
|
dataIndex: 'action',
|
align:"center",
|
fixed:"right",
|
width:200,
|
scopedSlots: { customRender: 'action' }
|
}
|
],
|
url: {
|
list: "/base/workCenterUser/list",
|
delete: "/base/workCenterUser/delete",
|
deleteBatch: "/base/workCenterUser/deleteBatch",
|
exportXlsUrl: "/base/workCenterUser/exportXls",
|
importExcelUrl: "base/workCenterUser/importExcel",
|
|
},
|
dictOptions:{},
|
superFieldList:[],
|
}
|
},
|
created() {
|
this.getSuperFieldList();
|
},
|
computed: {
|
importExcelUrl: function(){
|
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
|
},
|
},
|
methods: {
|
initDictConfig(){
|
},
|
getSuperFieldList(){
|
let fieldList=[];
|
fieldList.push({type:'string',value:'userId',text:'用户id',dictCode:''})
|
this.superFieldList = fieldList
|
},
|
clearList(){
|
this.dataSource=[]
|
this.selectedRowKeys=[]
|
this.ipagination.current = 1
|
},
|
loadData(arg) {
|
if(!this.url.list){
|
this.$message.error("请设置url.list属性!")
|
return
|
}
|
//加载数据 若传入参数1则加载第一页的内容
|
if (arg === 1) {
|
this.ipagination.current = 1;
|
}
|
var params = this.getQueryParams();//查询条件
|
this.loading = true;
|
getAction(this.url.list, params).then((res) => {
|
if (res.success) {
|
//update-begin---author:zhangyafei Date:20201118 for:适配不分页的数据列表------------
|
this.dataSource = res.result.records||res.result;
|
this.userIdList=this.getUserIdList(res.result.records)
|
if(res.result.total)
|
{
|
this.ipagination.total = res.result.total;
|
}else{
|
this.ipagination.total = 0;
|
}
|
//update-end---author:zhangyafei Date:20201118 for:适配不分页的数据列表------------
|
}else{
|
this.$message.warning(res.message)
|
}
|
}).finally(() => {
|
this.loading = false
|
})
|
},
|
getUserIdList(result){
|
var ids = '';
|
for(var i=0;i<result.length;i++){
|
ids=ids+result[i].userId+","
|
}
|
return ids;
|
}
|
}
|
}
|
</script>
|
<style scoped>
|
@import '~@assets/less/common.less';
|
</style>
|