Compare commits

..

2 Commits

Author SHA1 Message Date
熊飞 0e2f55ce9c 自定义阅片附件类型bug修复
continuous-integration/drone/push Build is passing Details
2024-01-19 18:06:07 +08:00
熊飞 4767126ff5 非dicom阅片缩略图 2024-01-19 17:50:50 +08:00
4 changed files with 7 additions and 8 deletions

View File

@ -50,7 +50,7 @@
:ref="`img${i}`"
:key="item.Id"
crossorigin="anonymous"
:src="`${OSSclientConfig.basePath}${item.FullFilePath}`"
:src="`${OSSclientConfig.basePath}${item.Path}`"
:style="imgStyle"
style="max-width:100%;max-height: 100%;"
@load="handleImgLoad"

View File

@ -44,7 +44,7 @@
}"
@click="selected(index)"
>
<img :title="item.FileName" :src="`${OSSclientConfig.basePath + item.PreviewPath}`" crossorigin="anonymous">
<img :title="item.FileName" :src="`${OSSclientConfig.basePath + item.Path}`" crossorigin="anonymous">
<p v-if="item.FileName" class="item-date">
{{ `${index+1}` }}
</p>

View File

@ -44,7 +44,7 @@
}"
@click="selected(index)"
>
<img :title="item.FileName" :src="`${OSSclientConfig.basePath + item.PreviewPath}`">
<img :title="item.FileName" :src="`${OSSclientConfig.basePath + item.Path}`">
<p v-if="item.FileName" class="item-date">
{{ `${index+1}` }}
</p>

View File

@ -79,8 +79,8 @@
<el-checkbox-group
v-model="form.FileType"
@change="(v) => {
if (v.includes('')) {
form.FileType = ['']
if (v.includes('-1')) {
form.FileType = ['-1']
} else {
}
}"
@ -88,13 +88,12 @@
<el-checkbox
v-for="item of $d.fileType"
:key="`fileType${item.value}`"
:value="item.value"
:value="item.value + ''"
:label="item.value"
:disabled="form.FileType.includes('') && item.value !== ''"
:disabled="form.FileType.includes('-1') && item.value !== '-1'"
>
{{ item.label }}
</el-checkbox>
{{ $d.fileType }}
</el-checkbox-group>
</el-form-item>
<!-- 最大字符数 -->