影像页面存储路径截图bug修复
parent
e9a3e3a238
commit
2f47202109
|
@ -92,7 +92,6 @@
|
||||||
label="Called AE"
|
label="Called AE"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
min-width="140"
|
min-width="140"
|
||||||
sortable="custom"
|
|
||||||
>
|
>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<!--Calling AE-->
|
<!--Calling AE-->
|
||||||
|
@ -101,7 +100,6 @@
|
||||||
label="Calling AE"
|
label="Calling AE"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
min-width="140"
|
min-width="140"
|
||||||
sortable="custom"
|
|
||||||
>
|
>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<!--序列数量-->
|
<!--序列数量-->
|
||||||
|
|
|
@ -1964,7 +1964,7 @@ export default {
|
||||||
var picturePath = ''
|
var picturePath = ''
|
||||||
if (val && measureData && this.questionForm.IsDicomReading) {
|
if (val && measureData && this.questionForm.IsDicomReading) {
|
||||||
var pictureObj = await this.uploadScreenshots(`${new Date().getTime()}`, val)
|
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 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}$/)
|
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}$/)
|
||||||
|
|
|
@ -694,7 +694,7 @@ export default {
|
||||||
var picturePath = ''
|
var picturePath = ''
|
||||||
if (val && measureData) {
|
if (val && measureData) {
|
||||||
var pictureObj = await this.uploadScreenshots(`${new Date().getTime()}`, val)
|
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 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}$/)
|
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}$/)
|
||||||
|
|
|
@ -1329,7 +1329,7 @@ export default {
|
||||||
if (val && measureData && this.questionForm.IsDicomReading) {
|
if (val && measureData && this.questionForm.IsDicomReading) {
|
||||||
var pictureObj = await this.uploadScreenshots(`${new Date().getTime()}`, val)
|
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 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}$/)
|
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}$/)
|
||||||
|
|
|
@ -974,7 +974,7 @@ export default {
|
||||||
var picturePath = ''
|
var picturePath = ''
|
||||||
if (val && measureData && this.questionForm.IsDicomReading) {
|
if (val && measureData && this.questionForm.IsDicomReading) {
|
||||||
var pictureObj = await this.uploadScreenshots(`${new Date().getTime()}`, val)
|
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 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}$/)
|
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}$/)
|
||||||
|
|
Loading…
Reference in New Issue