|
@@ -1,12 +1,13 @@
|
|
<template>
|
|
<template>
|
|
- <el-dialog
|
|
|
|
|
|
+ <el-drawer
|
|
:visible.sync="modalIsShow"
|
|
:visible.sync="modalIsShow"
|
|
title="手动输入"
|
|
title="手动输入"
|
|
- top="10px"
|
|
|
|
- width="500px"
|
|
|
|
|
|
+ size="500px"
|
|
:close-on-click-modal="false"
|
|
:close-on-click-modal="false"
|
|
:close-on-press-escape="false"
|
|
:close-on-press-escape="false"
|
|
|
|
+ :wrapper-closable="false"
|
|
append-to-body
|
|
append-to-body
|
|
|
|
+ :modal="false"
|
|
@open="visibleChange"
|
|
@open="visibleChange"
|
|
>
|
|
>
|
|
<el-form
|
|
<el-form
|
|
@@ -136,13 +137,13 @@
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</template>
|
|
</template>
|
|
</el-form>
|
|
</el-form>
|
|
- <div slot="footer">
|
|
|
|
|
|
+ <div class="el-drawer__footer">
|
|
<el-button type="primary" :disabled="!canSubmit" @click="submit"
|
|
<el-button type="primary" :disabled="!canSubmit" @click="submit"
|
|
>绑定</el-button
|
|
>绑定</el-button
|
|
>
|
|
>
|
|
<el-button @click="cancel">取消</el-button>
|
|
<el-button @click="cancel">取消</el-button>
|
|
</div>
|
|
</div>
|
|
- </el-dialog>
|
|
|
|
|
|
+ </el-drawer>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|