2 files renamed
9 files modified
| | |
| | | ...params, |
| | | current, |
| | | size, |
| | | |
| | | } |
| | | }) |
| | | } |
| | |
| | | |
| | | export const getList = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/zc/list', |
| | | url: '/api/zc/page', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | |
| | | component: () => |
| | | import( /* webpackChunkName: "views" */ '@/components/real-popup/kongbai') |
| | | }] |
| | | }, |
| | | { |
| | | path: '/role', |
| | | redirect: '/role/index', |
| | | component: Layout, |
| | | children: [{ |
| | | path: 'index', |
| | | name: '权限管理', |
| | | meta: { |
| | | i18n: 'index' |
| | | }, |
| | | component: () => |
| | | import( /* webpackChunkName: "views" */ '@/views/authority/role') |
| | | }] |
| | | }, |
| | | { |
| | | path: '/zc', |
| | | redirect: '/zc/index', |
| | | component: Layout, |
| | | children: [{ |
| | | path: 'index', |
| | | name: '注册审核', |
| | | meta: { |
| | | i18n: 'index' |
| | | }, |
| | | component: () => |
| | | import( /* webpackChunkName: "views" */ '@/views/zc/zc') |
| | | }] |
| | | } |
| | | |
| | | ] |
| | |
| | | background-color: transparent !important; |
| | | border-bottom: 1px solid $mainB !important; |
| | | } |
| | | //菜单scroll |
| | | .menuClass .el-card{ |
| | | height: auto !important; |
| | | } |
| | | |
| | | //机构管理 |
| | | .deptClass .el-card{ |
| | | height: auto !important; |
| | | } |
| | |
| | | rowDel(row) { |
| | | this.$confirm("确定将选择数据删除?", { |
| | | confirmButtonText: "确定", |
| | | cancelButtonText: "取消", |
| | | type: "warning", |
| | | cancelButtonText: "取消", type: "warning", |
| | | }) |
| | | .then(() => { |
| | | return remove(row.id); |
| | |
| | | <template> |
| | | <basic-container> |
| | | <basic-container class="deptClass"> |
| | | <avue-crud |
| | | :option="option" |
| | | :table-loading="loading" |
| | |
| | | <template> |
| | | <basic-container> |
| | | <basic-container class="menuClass"> |
| | | <avue-crud :option="option" |
| | | :table-loading="loading" |
| | | :data="data" |
| | |
| | | <template slot-scope="{row}" slot="type"> |
| | | <el-tag>{{row.type==='0'?'未审核':row.type==='1'?'审核通过':'审核未通过'}}</el-tag> |
| | | </template> |
| | | <template slot-scope="{ row }" slot="examination_type"> |
| | | 正常 |
| | | </template> |
| | | |
| | | <template slot-scope="{ row }" slot="examination_mx"> |
| | | 正常 |
| | | </template> |
| | | |
| | | <template slot-scope="{row}" |
| | | slot="roleName"> |
| | | <el-tag>{{row.roleName}}</el-tag> |
| | |
| | | calcHeight: 54, |
| | | tip: false, |
| | | searchShow: true, |
| | | searchMenuSpan: 6, |
| | | searchMenuSpan: 4, |
| | | border: true, |
| | | index: true, |
| | | viewBtn: true, |
| | |
| | | column: [ |
| | | { |
| | | label: "账号", |
| | | search: true, |
| | | searchSpan:4, |
| | | display: false, |
| | | disabled:true, |
| | | prop: "username", |
| | |
| | | { |
| | | label: "姓名", |
| | | display: false, |
| | | searchSpan:4, |
| | | search: true, |
| | | disabled:true, |
| | | prop: "sname", |
| | | }, |
| | | { |
| | | label: "性别", |
| | | display: false, |
| | | searchSpan:4, |
| | | search: true, |
| | | disabled:true, |
| | | prop: "sex", |
| | | type: "select", |
| | |
| | | }, |
| | | { |
| | | label: "部门", |
| | | disabled:true, |
| | | display: false, |
| | | prop: "deptid", |
| | | type: "tree", |
| | | dicUrl: "/api/blade-system/dept/selectInfo", |
| | | props: { |
| | | label: "dept_name", |
| | | value: "deptid" |
| | | }, |
| | | prop: "deptName", |
| | | // type: "tree", |
| | | // dicUrl: "/api/blade-system/dept/selectInfo", |
| | | // props: { |
| | | // label: "title", |
| | | // value: "value" |
| | | // }, |
| | | }, |
| | | { |
| | | label: "角色", |
| | |
| | | { |
| | | label: "审核状态", |
| | | prop: "type", |
| | | search: true, |
| | | slot: true, |
| | | searchSpan:4, |
| | | type: "select", |
| | | dicData: [ |
| | | { |
| | |
| | | } |
| | | |
| | | ], |
| | | },{ |
| | | label: "审查状态", |
| | | prop: "examination_type", |
| | | slot: true, |
| | | search: true, |
| | | searchSpan:4, |
| | | display: false, |
| | | type: "select", |
| | | dicData: [ |
| | | { |
| | | label: "正常", |
| | | value: "0", |
| | | }, |
| | | { |
| | | label: "异常", |
| | | value: "1", |
| | | }, |
| | | ], |
| | | }, |
| | | { |
| | | label: "审查明细", |
| | | prop: "examination_mx", |
| | | display: false, |
| | | slot: true, |
| | | } |
| | | ] |
| | | }, |
| | | data: [] |
| | |
| | | proxy: { |
| | | '/api': { |
| | | //本地服务接口地址 |
| | | target: 'http://s16s652780.51mypc.cn/api/', |
| | | // target: 'http://192.168.0.114:82/', |
| | | //target: 'http://localhost:82/', |
| | | //target: 'http://s16s652780.51mypc.cn/api/', |
| | | //target: 'http://223.82.109.183:83/', |
| | | target: 'http://localhost:82/', |
| | | //target: 'https://web.byisf.com/api/', |
| | | //远程演示服务地址,可用于直接启动项目 |
| | | //target: 'https://saber.bladex.vip/api', |