|
|
@ -124,7 +124,7 @@ |
|
|
|
// 表头 |
|
|
|
// 表头 |
|
|
|
columns: [ |
|
|
|
columns: [ |
|
|
|
{ |
|
|
|
{ |
|
|
|
title: '#', |
|
|
|
title: '序号', |
|
|
|
dataIndex: '', |
|
|
|
dataIndex: '', |
|
|
|
key:'rowIndex', |
|
|
|
key:'rowIndex', |
|
|
|
width:60, |
|
|
|
width:60, |
|
|
@ -198,9 +198,10 @@ |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
created() { |
|
|
|
created() { |
|
|
|
|
|
|
|
|
|
|
|
this.getSuperFieldList(); |
|
|
|
this.getSuperFieldList(); |
|
|
|
this.initDictConfig(); |
|
|
|
this.initDictConfig(); |
|
|
|
console.log() |
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
computed: { |
|
|
|
computed: { |
|
|
|
importExcelUrl: function(){ |
|
|
|
importExcelUrl: function(){ |
|
|
@ -208,6 +209,44 @@ |
|
|
|
}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
methods: { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
loadData(arg) { |
|
|
|
|
|
|
|
if(!this.url.list){ |
|
|
|
|
|
|
|
this.$message.error("请设置url.list属性!") |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
//加载数据 若传入参数1则加载第一页的内容 |
|
|
|
|
|
|
|
if (arg === 1) { |
|
|
|
|
|
|
|
this.ipagination.current = 1; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
this.section(); |
|
|
|
|
|
|
|
var params = this.getQueryParams();//查询条件 |
|
|
|
|
|
|
|
this.loading = true; |
|
|
|
|
|
|
|
console.log("params>>>>>>",params) |
|
|
|
|
|
|
|
getAction(this.url.list, params).then((res) => { |
|
|
|
|
|
|
|
if (res.success) { |
|
|
|
|
|
|
|
this.dataSource = res.result.records||res.result; |
|
|
|
|
|
|
|
if(res.result.total) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
this.ipagination.total = res.result.total; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if(res.code===510){ |
|
|
|
|
|
|
|
this.$message.warning(res.message) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
this.loading = false; |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获取部门ID |
|
|
|
|
|
|
|
section(){ |
|
|
|
|
|
|
|
let ue= sessionStorage.getItem('USER_INFORMATION'); |
|
|
|
|
|
|
|
let res=JSON.parse(ue); |
|
|
|
|
|
|
|
if(res.realname !== "管理员"){ |
|
|
|
|
|
|
|
this.queryParam.sysOrgCode = res.departIds; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
handleDetail(record){ |
|
|
|
handleDetail(record){ |
|
|
|
console.log("1111111111111111111111111111111111") |
|
|
|
console.log("1111111111111111111111111111111111") |
|
|
|
console.log(record); |
|
|
|
console.log(record); |
|
|
|