|
|
@@ -9,8 +9,9 @@ export default { |
|
|
|
}, |
|
|
|
data () { |
|
|
|
return { |
|
|
|
isLoad: false, |
|
|
|
headers: ['合同编码', '合同名称', '合同截止日期', '部门'], |
|
|
|
data: [['合同编码', '合同名称', '合同截止日期', '部门']] |
|
|
|
data: [] |
|
|
|
}; |
|
|
|
}, |
|
|
|
computed: { |
|
|
@@ -35,7 +36,6 @@ export default { |
|
|
|
if (this.year, this.deptId) { |
|
|
|
this.isLoad = false; |
|
|
|
longTermContractNonExecutionWarning(this.deptId, this.year).then(res => { |
|
|
|
console.log(22222, res); |
|
|
|
let data = res.data.map(item => { |
|
|
|
return [item.code, item.name, item.endTime, item.deptName] |
|
|
|
}) |
|
|
|