diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AssetManagementSystem/Audit_Expenditures/single.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AssetManagementSystem/Audit_Expenditures/single.vue index 08e410c42..f99073b03 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AssetManagementSystem/Audit_Expenditures/single.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AssetManagementSystem/Audit_Expenditures/single.vue @@ -28,6 +28,15 @@ + + + {{ item.Unit ? mapitem(item.Unit) : '请选择单位' }} + + @@ -87,6 +96,10 @@ export default { Informant:[], IsFixedAssets: [], DeclarationType:[], + Unit:Object.values(this.GET_GLOBAL('dataDictionary').sldw).map(t => ({ + value: t.value, + text: t.text + })), }, FundsApplyDetail: [], @@ -311,6 +324,11 @@ export default { }else{ return '是' } + }, + mapitem(data){ + return this.dataSource.Unit.find(item=>{ + return item.value == data + }).text } } }