vue树形结构获取键值的方法示例
更新时间:2018年06月21日 14:33:21 作者:miaomiaotab
这篇文章主要介绍了vue树形结构获取键值的方法示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
本文介绍了vue树形结构获取键值的方法示例,分享给大家,具体如下:
把键值文件放入
引入控件
import { getTypeValue } from '@/api/dict/dictValue/index';
点击搜索,打开弹窗
<el-form-item label="机构名称" placeholder="请选择机构" prop="orgName"> <el-input readonly type="text" v-model="form.orgName"> <el-button slot="append" icon="el-icon-search" @click="openDepartDialog()"></el-button> </el-input> </el-form-item>
打开控件事件,关闭控件事件
openDepartDialog() { this.dialogDepartVisible = true }, closeDepartDialog(depart) { console.log(depart) this.form.orgName = depart.label this.form.code = depart.id this.form.departId = depart.id this.dialogDepartVisible = false },
关闭弹窗按钮
<el-dialog title="选择机构" width="30%" :visible.sync="dialogDepartVisible"> <depart-selector @closeDepartDialog="closeDepartDialog" ref="departSelector"></depart-selector> <span slot="footer" class="dialog-footer"> <el-button class="filter-item" style="margin-left: 10px;" @click="handlerAddDepart" type="primary" icon="edit">添加</el-button> </span> </el-dialog>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
uniapp微信小程序使用webview嵌套uniappH5并实现通信详细步骤
在开发微信小程序的时候,我们有时候会遇到将H5页面嵌入到小程序页面中的情况,这篇文章主要给大家介绍了关于uniapp微信小程序使用webview嵌套uniappH5并实现通信的详细步骤,需要的朋友可以参考下2024-05-05el-descriptions引入代码中label不生效问题及解决
这篇文章主要介绍了el-descriptions引入代码中label不生效问题及解决方案,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教2023-12-12
最新评论