display link to download uploaded files

This commit is contained in:
Jim Wang 2024-06-08 09:30:52 +08:00
parent 510a879b5e
commit 2ddab90136

View File

@ -72,6 +72,9 @@
Propose Propose
</button> </button>
<div class="request-description-content" v-html="request.content"></div> <div class="request-description-content" v-html="request.content"></div>
<div v-for="(document_id, index) in request.document_ids" :key="document_id">
<a :href="getDocumentDownloadLink(document_id)" download>file-{{ index }}</a>
</div>
</div> </div>
<div class="issuer-profile-container"> <div class="issuer-profile-container">
<label class="issuer-profile-label" for="issuer-achievement-container" <label class="issuer-profile-label" for="issuer-achievement-container"
@ -198,6 +201,9 @@ export default {
}, },
getDateFromFulltimeString(fulltime) { getDateFromFulltimeString(fulltime) {
return DateUtils.FromJsonToDateString(fulltime) return DateUtils.FromJsonToDateString(fulltime)
},
getDocumentDownloadLink(document_id) {
return '/api/v1/document/download/' + document_id
} }
} }
} }