Compare commits
No commits in common. "0e2f55ce9cea612713f66da6db4d419f1e93f61f" and "c57b95ee3b0cb7283d7c35505cd08aa58b4a7038" have entirely different histories.
0e2f55ce9c
...
c57b95ee3b
|
@ -50,7 +50,7 @@
|
|||
:ref="`img${i}`"
|
||||
:key="item.Id"
|
||||
crossorigin="anonymous"
|
||||
:src="`${OSSclientConfig.basePath}${item.Path}`"
|
||||
:src="`${OSSclientConfig.basePath}${item.FullFilePath}`"
|
||||
:style="imgStyle"
|
||||
style="max-width:100%;max-height: 100%;"
|
||||
@load="handleImgLoad"
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
}"
|
||||
@click="selected(index)"
|
||||
>
|
||||
<img :title="item.FileName" :src="`${OSSclientConfig.basePath + item.Path}`" crossorigin="anonymous">
|
||||
<img :title="item.FileName" :src="`${OSSclientConfig.basePath + item.PreviewPath}`" crossorigin="anonymous">
|
||||
<p v-if="item.FileName" class="item-date">
|
||||
{{ `${index+1}` }}
|
||||
</p>
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
}"
|
||||
@click="selected(index)"
|
||||
>
|
||||
<img :title="item.FileName" :src="`${OSSclientConfig.basePath + item.Path}`">
|
||||
<img :title="item.FileName" :src="`${OSSclientConfig.basePath + item.PreviewPath}`">
|
||||
<p v-if="item.FileName" class="item-date">
|
||||
{{ `${index+1}` }}
|
||||
</p>
|
||||
|
|
|
@ -79,8 +79,8 @@
|
|||
<el-checkbox-group
|
||||
v-model="form.FileType"
|
||||
@change="(v) => {
|
||||
if (v.includes('-1')) {
|
||||
form.FileType = ['-1']
|
||||
if (v.includes('')) {
|
||||
form.FileType = ['']
|
||||
} else {
|
||||
}
|
||||
}"
|
||||
|
@ -88,12 +88,13 @@
|
|||
<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('-1') && item.value !== '-1'"
|
||||
:disabled="form.FileType.includes('') && item.value !== ''"
|
||||
>
|
||||
{{ item.label }}
|
||||
</el-checkbox>
|
||||
{{ $d.fileType }}
|
||||
</el-checkbox-group>
|
||||
</el-form-item>
|
||||
<!-- 最大字符数 -->
|
||||
|
|
Loading…
Reference in New Issue