Compare commits

..

No commits in common. "716d0e3513da09a7598aaf97a8b2ec0bb634e755" and "6743811bd6cae5487b526ecf1d0ae66a07b77ac4" have entirely different histories.

2 changed files with 3 additions and 4 deletions

View File

@ -33,7 +33,7 @@
> >
<template slot-scope="scope"> <template slot-scope="scope">
<span v-if="item.Type === 'upload'"> <span v-if="item.Type === 'upload'">
{{scope.row[item.Id] === '' ? '' : scope.row[item.Id] ? scope.row[item.Id].split('|').length : ''}} {{scope.row[item.Id] === '' ? '' : scope.row[item.Id].split('|').length}}
</span> </span>
<span v-else-if="item.Type === 'number'"> <span v-else-if="item.Type === 'number'">
{{scope.row[item.Id] ? parseFloat(scope.row[item.Id]).toFixed(digitPlaces) : null}} {{scope.row[item.Id] ? parseFloat(scope.row[item.Id]).toFixed(digitPlaces) : null}}
@ -589,8 +589,7 @@ export default {
submitTableQuestion(params).then(async res => { submitTableQuestion(params).then(async res => {
this.$message.success(this.$t('common:message:savedSuccessfully')) this.$message.success(this.$t('common:message:savedSuccessfully'))
this.QuestionsForm.RowId = res.Result.RowId this.QuestionsForm.RowId = res.Result.RowId
DicomEvent.$emit('reGetQuestionAnswer') this.save()
// this.save()
loading.close() loading.close()
}).catch(() => { loading.close() }) }).catch(() => { loading.close() })
}) })

View File

@ -95,7 +95,7 @@ name: "CustomizeReportPageUpload",
this.urls.map(url => { this.urls.map(url => {
this.fileList.push({ name: '', url: `${url}` }) this.fileList.push({ name: '', url: `${url}` })
}) })
// console.log(this.fileList) console.log(this.fileList)
}, },
methods: { methods: {
checkFileSuffix(fileName) { checkFileSuffix(fileName) {