| 1234567891011121314151617181920212223242526272829 |
- <template>
- <el-card shadow="never" style="border: 0;">
- <#if form#>
- <yun-form
- <#if !reduced#>
- ref="yunform"
- @render="onFormRender"
- @submit="onSubmit"
- @success="onSuccess"
- @fail="onFail"
- <#endif#>
- :data="row"
- :columns="columns">
- <template #default>
- {:token_field()}
- </template>
- <#slot#>
- </yun-form>
- <#endif#>
- <#if !form#>
- <#title#>
- <#endif#>
- </el-card>
- </template>
- <script>
- <#js#>
- </script>
- <style>
- </style>
|