|
@@ -41,7 +41,7 @@
|
|
|
<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="4">
|
|
|
- {{ detailData.content.join(';')||'' }}
|
|
|
+ {{ detailData.content.join(',')||'' }}。
|
|
|
</a-descriptions-item>
|
|
|
<a-descriptions-item label="附件" :span="4">
|
|
|
<a target="_blank" style="color: #00aaff;text-decoration: underline;margin-right: 15px;" :href="item.filePath" v-for="item in detailData.expenseAccountFilesList" :key="item.id">
|
|
@@ -168,7 +168,7 @@ export default {
|
|
|
if (res.status == 200) {
|
|
|
this.spinning = false
|
|
|
this.detailData = res.data
|
|
|
- this.detailData.content = res.data.content.split('\n')
|
|
|
+ this.detailData.content = res.data.content.replace(/\n+/, '\n').split('\n')
|
|
|
this.$refs.table.refresh()
|
|
|
} else {
|
|
|
this.detailData = null
|