摘要: watch: { queryParams: { handler (newval) { function filltertime (time) { return new Date(time).getTime() } let Newval = newval['yearMonth'] const _thi 阅读全文
posted @ 2023-04-21 16:41 行8 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 定义props中的键值对应关系 定义好之后了解后台传递过来的值是什么类型 当点编辑之后进行数据回显 蓝色为number类型 最后通过this.$refs['ref名称'].checkedValue进行回显。注意:回显额值是数组形式。但是数组中的每一项的类型需要对应props中自定义的键值对的值类型 阅读全文
posted @ 2023-03-27 11:58 行8 阅读(321) 评论(0) 推荐(0) 编辑
摘要: // 在vue.config.js中的配置项配置 devServer: { proxy: { // 当我们的本地的请求 有/api的时候,就会代理我们的请求地址向另外一个服务器发出请求 '/api': { // 跨域请求的地址 // target: 'http://ihrm-java.itheima 阅读全文
posted @ 2022-05-25 09:09 行8 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 表格获取当前行的方法,参考element-UI文档上,可以使用作用域插槽获取当前行的数据 // 通过 slot-scope 可以获取到 row, column, $index 和 store(table 内部的状态管理)的数据 参数需要解构 <template slot-scope="{ row } 阅读全文
posted @ 2022-03-26 21:44 行8 阅读(1605) 评论(0) 推荐(0) 编辑
摘要: const req = require.context('./modules', false, /\.js$/)const requireAll = requireContext => requireContext.keys().map(requireContext)const res = requ 阅读全文
posted @ 2022-03-23 11:09 行8 阅读(23) 评论(0) 推荐(0) 编辑