欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

关于vue树形结构获取键值的方法

程序员文章站 2022-03-31 15:00:30
...
这篇文章主要介绍了vue树形结构获取键值的方法示例,内容挺不错的,现在分享给大家,也给大家做个参考。

本文介绍了vue树形结构获取键值的方法示例,分享给大家,具体如下:

把键值文件放入

关于vue树形结构获取键值的方法

引入控件

import { getTypeValue } from '@/api/dict/dictValue/index';

关于vue树形结构获取键值的方法

点击搜索,打开弹窗

<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>

关于vue树形结构获取键值的方法

打开控件事件,关闭控件事件

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

},

关于vue树形结构获取键值的方法

关闭弹窗按钮

<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>

关于vue树形结构获取键值的方法

关于vue树形结构获取键值的方法

以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!

相关推荐:

vue中v-for加载本地静态图片方法

Vue多种方法实现表头和首列固定的方法

以上就是关于vue树形结构获取键值的方法的详细内容,更多请关注其它相关文章!