摘要:
ztree的数据格式可以有两种 一、children层级 如下: [{ name: "企业基本信息", parentId: "0", id: "04", children: [ { name: "minsfasf信息", parentId: "04", id: "040", }, ], }] 二、p 阅读全文
摘要:
1 获取?后面的参数 http://192.168.1.105:8080/#/idInput?username=%22%E5%BC%A0%E4%B8%89%22 获取参数方法 let id = this.$route.query.username 2 获取不带?的URL中的参数 http://192 阅读全文
摘要:
后端希望将选中项的id和name同时传过去,于是就开始试验: 事件+双value selectSubjectItem(event) { console.log(event); this.formData.subjectCode = event.code; // 赋值给后端需要的字段 this.for 阅读全文
摘要:
一、服务器安装数据库mongodb、node 和pm2依赖 1、在usr路径下新建soft目录,存放安装的软件。 mkdir soft 2、在soft目录下新建mongodb目录 mkdir mongodb 安装官网地址https://www.mongodb.com/download-center# 阅读全文
摘要:
统一设置设置表头居中【:header-cell-style="{'text-align':'center'}"】 统一设置设置内容列居中【:cell-style="{'text-align':'center'}"】 阅读全文
摘要:
ztree插件报错 jQuery is not defined at eval (jquery.ztree.core.js?2f2b:1986) at Object../src/plugin/ztreeJS/js/jquery.ztree.core.js 解决方法: 在vue.config.js文件 阅读全文
摘要:
如下是dialog做出来的效果: 但我希望头部和底部都有border样式,区分开来,查看源代码之后我在style里面这样写了: <style lang="scss" scoped> .el-dialog__header{ border-bottom: 1px solid #e8eaec; } .el 阅读全文
摘要:
原型效果: 代码实现: <el-table-column property="address" label="操作"> <template slot-scope="scope"> <el-button @click="setGrade(scope.row)" type="text" size="sm 阅读全文
摘要:
<el-table :header-cell-style="{background:'#eee',color:'#606266'}"> ... </el-table> header-cell-style是表头单元格的 style 的回调方法,也可以使用一个固定的 Object 为所有表头单元格设置一 阅读全文
摘要:
最近在做ztree树插件的搜索功能,需要对搜索后的结果若是空的话需要隐藏节点,这就要调用ztreeObj的 hideNode API, 在init的时候我初始化了这些方法, 但是调用的时候报错 this.treeObj.hideNode is not a function,于是我打印出了 treeO 阅读全文