本文介紹了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>
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。
新聞熱點
疑難解答