diff --git a/src/views/resources/comps/right/bottom/2/index.js b/src/views/resources/comps/right/bottom/2/index.js index 2c895f7..63eec1e 100644 --- a/src/views/resources/comps/right/bottom/2/index.js +++ b/src/views/resources/comps/right/bottom/2/index.js @@ -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] })