自定义阅片附件类型bug修复
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
4767126ff5
commit
0e2f55ce9c
|
@ -79,8 +79,8 @@
|
||||||
<el-checkbox-group
|
<el-checkbox-group
|
||||||
v-model="form.FileType"
|
v-model="form.FileType"
|
||||||
@change="(v) => {
|
@change="(v) => {
|
||||||
if (v.includes('')) {
|
if (v.includes('-1')) {
|
||||||
form.FileType = ['']
|
form.FileType = ['-1']
|
||||||
} else {
|
} else {
|
||||||
}
|
}
|
||||||
}"
|
}"
|
||||||
|
@ -88,13 +88,12 @@
|
||||||
<el-checkbox
|
<el-checkbox
|
||||||
v-for="item of $d.fileType"
|
v-for="item of $d.fileType"
|
||||||
:key="`fileType${item.value}`"
|
:key="`fileType${item.value}`"
|
||||||
:value="item.value"
|
:value="item.value + ''"
|
||||||
:label="item.value"
|
:label="item.value"
|
||||||
:disabled="form.FileType.includes('') && item.value !== ''"
|
:disabled="form.FileType.includes('-1') && item.value !== '-1'"
|
||||||
>
|
>
|
||||||
{{ item.label }}
|
{{ item.label }}
|
||||||
</el-checkbox>
|
</el-checkbox>
|
||||||
{{ $d.fileType }}
|
|
||||||
</el-checkbox-group>
|
</el-checkbox-group>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- 最大字符数 -->
|
<!-- 最大字符数 -->
|
||||||
|
|
Loading…
Reference in New Issue