|
|
@@ -27,9 +27,9 @@ export default { |
|
|
|
data () { |
|
|
|
return { |
|
|
|
isLoad: false, |
|
|
|
headers: ['部门', '资源名称', '类别', '面积(亩)', '处置类型'], |
|
|
|
headers: ['部门', '资源名称', '类别', '申请日期', '处置类型'], |
|
|
|
data: [ |
|
|
|
['部门', '资源名称', '类别', '面积(亩)', '处置类型'] |
|
|
|
['部门', '资源名称', '类别', '申请日期', '处置类型'] |
|
|
|
] |
|
|
|
}; |
|
|
|
}, |
|
|
@@ -39,7 +39,7 @@ export default { |
|
|
|
this.isLoad = false; |
|
|
|
resourceFisposalWarning(this.deptId, this.year).then(res => { |
|
|
|
let data = res.rows.map(item => { |
|
|
|
return [item.deptId, item.assetName, item.assetType, 'null', item.assetStatus] |
|
|
|
return [item.deptId, item.assetName, item.assetType, item.applyAt, item.assetStatus] |
|
|
|
}) |
|
|
|
this.data = data; |
|
|
|
this.isLoad = true; |
|
|
|