Showing
2 changed files
with
4 additions
and
3 deletions
| 1 | <template> | 1 | <template> |
| 2 | <div> | 2 | <div> |
| 3 | - <el-form class="form-header" ref="selectForm" label-width="auto" label-position="left" | 3 | + <el-form class="form-header" ref="selectForm" label-width="auto" label-position="right" |
| 4 | style="margin-bottom:10px" @submit.native.prevent size="small"> | 4 | style="margin-bottom:10px" @submit.native.prevent size="small"> |
| 5 | <el-row> | 5 | <el-row> |
| 6 | <el-col :span="6"> | 6 | <el-col :span="6"> | ... | ... |
| ... | @@ -3,13 +3,14 @@ | ... | @@ -3,13 +3,14 @@ |
| 3 | <el-dialog title="新 增" :visible.sync="open" width="25%" :close-on-click-modal="false" :show-close="false" | 3 | <el-dialog title="新 增" :visible.sync="open" width="25%" :close-on-click-modal="false" :show-close="false" |
| 4 | append-to-body center> | 4 | append-to-body center> |
| 5 | <el-form class="form-header" :model="formData" size="small" ref="addForm" label-width="auto" | 5 | <el-form class="form-header" :model="formData" size="small" ref="addForm" label-width="auto" |
| 6 | - label-position="left" style="margin-bottom:10px" :rules="rules" @submit.native.prevent> | 6 | + label-position="right" style="margin-bottom:10px" :rules="rules" @submit.native.prevent> |
| 7 | <el-form-item label="货站名称" prop="goodsStation"> | 7 | <el-form-item label="货站名称" prop="goodsStation"> |
| 8 | <el-input type="text" v-model="formData.goodsStation" maxlength="25" placeholder="请输入货站名称"> | 8 | <el-input type="text" v-model="formData.goodsStation" maxlength="25" placeholder="请输入货站名称"> |
| 9 | </el-input> | 9 | </el-input> |
| 10 | </el-form-item> | 10 | </el-form-item> |
| 11 | <el-form-item label="航班" prop="flightList"> | 11 | <el-form-item label="航班" prop="flightList"> |
| 12 | - <el-input type="textarea" v-model="flightList" rows="4" maxlength="125" placeholder="请输入航班,多个用“;”隔开"> | 12 | + <el-input type="textarea" v-model="flightList" rows="4" maxlength="125" |
| 13 | + placeholder="请输入航班,多个用“;”隔开"> | ||
| 13 | </el-input> | 14 | </el-input> |
| 14 | </el-form-item> | 15 | </el-form-item> |
| 15 | </el-form> | 16 | </el-form> | ... | ... |
-
Please register or login to post a comment