|
@@ -10,7 +10,7 @@
|
|
|
<el-option v-for="item in studioList" :key="item.dict_label" :label="item.dict_label" :value="item.dict_value"></el-option>
|
|
|
</template>
|
|
|
<template #prove>
|
|
|
- <component :is="CFile" model="prove" :limit="limit" :url="url" :list="form.prove" @change="onChange"></component>
|
|
|
+ <component style="width: 100%" :is="CFile" model="prove" :limit="limit" :url="url" :list="form.prove" @change="onChange"></component>
|
|
|
</template>
|
|
|
</component>
|
|
|
</el-col>
|
|
@@ -20,7 +20,15 @@
|
|
|
<el-col :span="24" class="two_2">
|
|
|
<component :is="CForm" :fields="ufields" :rules="rules" :form="uform" labelWidth="auto" @save="utoSave" @dataChange="dataChange">
|
|
|
<template #card>
|
|
|
- <component :is="CFile" model="card" limit="2" url="/files/studioadmin/register/upload" :list="uform.card" @change="uonChange"></component>
|
|
|
+ <component
|
|
|
+ style="width: 100%"
|
|
|
+ :is="CFile"
|
|
|
+ model="card"
|
|
|
+ limit="2"
|
|
|
+ url="/files/studioadmin/register/upload"
|
|
|
+ :list="uform.card"
|
|
|
+ @change="uonChange"
|
|
|
+ ></component>
|
|
|
</template>
|
|
|
<template #unit_phone>
|
|
|
<el-col :span="12">
|
|
@@ -72,13 +80,37 @@
|
|
|
</el-col>
|
|
|
</template>
|
|
|
<template #audit_report>
|
|
|
- <component :is="CFile" model="audit_report" :limit="limit" :url="url" :list="uform.audit_report" @change="uonChange"></component>
|
|
|
+ <component
|
|
|
+ style="width: 100%"
|
|
|
+ :is="CFile"
|
|
|
+ model="audit_report"
|
|
|
+ :limit="limit"
|
|
|
+ :url="url"
|
|
|
+ :list="uform.audit_report"
|
|
|
+ @change="uonChange"
|
|
|
+ ></component>
|
|
|
</template>
|
|
|
<template #special_report>
|
|
|
- <component :is="CFile" model="special_report" :limit="limit" :url="url" :list="uform.special_report" @change="uonChange"></component>
|
|
|
+ <component
|
|
|
+ style="width: 100%"
|
|
|
+ :is="CFile"
|
|
|
+ model="special_report"
|
|
|
+ :limit="limit"
|
|
|
+ :url="url"
|
|
|
+ :list="uform.special_report"
|
|
|
+ @change="uonChange"
|
|
|
+ ></component>
|
|
|
</template>
|
|
|
<template #prove_file>
|
|
|
- <component :is="CFile" model="prove_file" :limit="limit" :url="url" :list="uform.prove_file" @change="uonChange"></component>
|
|
|
+ <component
|
|
|
+ style="width: 100%"
|
|
|
+ :is="CFile"
|
|
|
+ model="prove_file"
|
|
|
+ :limit="limit"
|
|
|
+ :url="url"
|
|
|
+ :list="uform.prove_file"
|
|
|
+ @change="uonChange"
|
|
|
+ ></component>
|
|
|
</template>
|
|
|
</component>
|
|
|
</el-col>
|