|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
- <div>
|
|
|
- <el-card class="box-card" v-loading="loading">
|
|
|
+ <div v-loading="loading">
|
|
|
+ <div style="height: calc(100vh - 174px); overflow-y: auto; overflow-x: hidden">
|
|
|
<byForm :formConfig="formConfig" :formOption="formOption" v-model="formData.data" :rules="rules" ref="submit">
|
|
|
<template #basicInformation>
|
|
|
<div style="width: 100%">
|
|
@@ -39,11 +39,11 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
</byForm>
|
|
|
- <div style="width: 100%; text-align: center; margin: 10px">
|
|
|
- <el-button @click="clickCancel()" size="large">取 消</el-button>
|
|
|
- <el-button type="primary" @click="submitForm()" size="large" v-preReClick>确 定</el-button>
|
|
|
- </div>
|
|
|
- </el-card>
|
|
|
+ </div>
|
|
|
+ <div style="width: 100%; text-align: center; margin: 10px">
|
|
|
+ <el-button @click="clickCancel()" size="large">取 消</el-button>
|
|
|
+ <el-button type="primary" @click="submitForm()" size="large" v-preReClick>确 定</el-button>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|