影像页面存储路径截图bug修复

main
caiyiling 2024-04-23 11:15:05 +08:00
parent e9a3e3a238
commit 2f47202109
5 changed files with 4 additions and 6 deletions

View File

@ -92,7 +92,6 @@
label="Called AE"
show-overflow-tooltip
min-width="140"
sortable="custom"
>
</el-table-column>
<!--Calling AE-->
@ -101,7 +100,6 @@
label="Calling AE"
show-overflow-tooltip
min-width="140"
sortable="custom"
>
</el-table-column>
<!--序列数量-->

View File

@ -1964,7 +1964,7 @@ export default {
var picturePath = ''
if (val && measureData && this.questionForm.IsDicomReading) {
var pictureObj = await this.uploadScreenshots(`${new Date().getTime()}`, val)
picturePath = pictureObj.isSuccess ? this.$getObjectName(pictureObj.result.url) : ''
picturePath = pictureObj.isSuccess ? pictureObj.result.name : ''
}
var answers = []
var reg = new RegExp(/^[0-9a-zA-Z]{8}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{12}$/)

View File

@ -694,7 +694,7 @@ export default {
var picturePath = ''
if (val && measureData) {
var pictureObj = await this.uploadScreenshots(`${new Date().getTime()}`, val)
picturePath = pictureObj.isSuccess ? this.$getObjectName(pictureObj.result.url) : ''
picturePath = pictureObj.isSuccess ? pictureObj.result.name : ''
}
var answers = []
var reg = new RegExp(/^[0-9a-zA-Z]{8}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{12}$/)

View File

@ -1329,7 +1329,7 @@ export default {
if (val && measureData && this.questionForm.IsDicomReading) {
var pictureObj = await this.uploadScreenshots(`${new Date().getTime()}`, val)
picturePath = pictureObj.isSuccess ? this.$getObjectName(pictureObj.result.url) : ''
picturePath = pictureObj.isSuccess ? pictureObj.result.name : ''
}
var answers = []
var reg = new RegExp(/^[0-9a-zA-Z]{8}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{12}$/)

View File

@ -974,7 +974,7 @@ export default {
var picturePath = ''
if (val && measureData && this.questionForm.IsDicomReading) {
var pictureObj = await this.uploadScreenshots(`${new Date().getTime()}`, val)
picturePath = pictureObj.isSuccess ? this.$getObjectName(pictureObj.result.url) : ''
picturePath = pictureObj.isSuccess ? pictureObj.result.name : ''
}
var answers = []
var reg = new RegExp(/^[0-9a-zA-Z]{8}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{12}$/)