/* * @Author: xiaomiao 1158771342@qq.com * @Date: 2023-01-30 17:59:51 * @LastEditors: Please set LastEditors * @LastEditTime: 2023-03-23 09:34:50 * @FilePath: \监管系统\js-web-jianguan\src\views\system\users\data\index.js * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE */ import filter from '@/utils/filter.js' class data extends filter { constructor() { super() } columns () { return [ { prop: "code", label: "工号", width: 130 }, { prop: "name", label: "姓名", width: 100 }, { prop: "loginName", label: "用户名" }, { prop: "departmentName", label: "组织机构", minWidth: 130 }, { prop: "telephone", label: "电话" }, { prop: "jobLevel", label: "职位" }, ] } } export default new data()