|
@@ -23,7 +23,7 @@
|
|
|
<a-descriptions-item label="创建时间">{{ detailData&&detailData.createDate || '--' }}</a-descriptions-item>
|
|
|
<a-descriptions-item label="审核时间">{{ detailData&&detailData.finishDate || '--' }}</a-descriptions-item>
|
|
|
<a-descriptions-item label="主题" :span="3">{{ detailData&&detailData.title || '--' }}</a-descriptions-item>
|
|
|
- <a-descriptions-item label="详细说明" :span="3">{{ detailData&&detailData.content|| '--' }}</a-descriptions-item>
|
|
|
+ <a-descriptions-item label="详细说明" :span="3">{{ detailData&&detailData.content.join(',')||'' }}</a-descriptions-item>
|
|
|
<a-descriptions-item label="附件" :span="3">
|
|
|
<a target="_blank" style="color: #00aaff;text-decoration: underline;margin-right: 15px;" :href="item.filePath" v-for="item in detailData.expenseAccountFilesList" :key="item.id">
|
|
|
{{ item.fileName }}
|
|
@@ -203,6 +203,7 @@ export default {
|
|
|
expenseAccountDetail({ expenseAccountSn: this.$route.params.sn }).then(res => {
|
|
|
if (res.status == 200) {
|
|
|
this.detailData = res.data
|
|
|
+ this.detailData.content = res.data.content.replace(/\n+/, '\n').split('\n')
|
|
|
if (!type) {
|
|
|
// 获取费用明细列表
|
|
|
this.getExpenseDetailList()
|