Compare commits
No commits in common. "716d0e3513da09a7598aaf97a8b2ec0bb634e755" and "6743811bd6cae5487b526ecf1d0ae66a07b77ac4" have entirely different histories.
716d0e3513
...
6743811bd6
|
@ -33,7 +33,7 @@
|
|||
>
|
||||
<template slot-scope="scope">
|
||||
<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 v-else-if="item.Type === 'number'">
|
||||
{{scope.row[item.Id] ? parseFloat(scope.row[item.Id]).toFixed(digitPlaces) : null}}
|
||||
|
@ -589,8 +589,7 @@ export default {
|
|||
submitTableQuestion(params).then(async res => {
|
||||
this.$message.success(this.$t('common:message:savedSuccessfully'))
|
||||
this.QuestionsForm.RowId = res.Result.RowId
|
||||
DicomEvent.$emit('reGetQuestionAnswer')
|
||||
// this.save()
|
||||
this.save()
|
||||
loading.close()
|
||||
}).catch(() => { loading.close() })
|
||||
})
|
||||
|
|
|
@ -95,7 +95,7 @@ name: "CustomizeReportPageUpload",
|
|||
this.urls.map(url => {
|
||||
this.fileList.push({ name: '', url: `${url}` })
|
||||
})
|
||||
// console.log(this.fileList)
|
||||
console.log(this.fileList)
|
||||
},
|
||||
methods: {
|
||||
checkFileSuffix(fileName) {
|
||||
|
|
Loading…
Reference in New Issue