From 6a802fc163f5150c1c28209afbe2eac625b58a9d Mon Sep 17 00:00:00 2001 From: liujun Date: Sat, 13 Apr 2024 10:59:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=88=86=E9=A1=B5=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../oneCompany/reflection/components/list.vue | 82 ++++--------------- 1 file changed, 17 insertions(+), 65 deletions(-) diff --git a/src/views/oneCompany/reflection/components/list.vue b/src/views/oneCompany/reflection/components/list.vue index 41db9f2..2859cff 100644 --- a/src/views/oneCompany/reflection/components/list.vue +++ b/src/views/oneCompany/reflection/components/list.vue @@ -38,22 +38,25 @@ - - + + + + + + + +
- 批量同意 + 新增
- +
@@ -70,36 +73,11 @@ export default { data() { return { config: config, - QRCodeDialog: false, - qrcodeStr: '', - userDetailForm: {}, - specialUsersList: {}, - detailForm: {}, - userEntryForm: {}, - imgUrl: '', - SUPERVISE_CORPINFO_ID: '', - wenhuachengduList: [], // 文化程度 - postList: [], // 岗位名称 - photosOfLevel: [], // 三级教育照片 - trainRecordList: [], // 培训记录 - contractFileList: [], // 合同文件 - insuranceFileList: [], // 保险文件 - gongshangbaoxianFile: [], - userPhotoFile: [], // 头像 - userCardIDPhotoFile: [], // 身份证照片 - socialPhotoFile: [], // 身份证照片 listQuery: { - page: 1, - limit: 20 + page: 0, + limit: 10, + total: 0 }, - total: 0, - varList: [], - KEYWORDS: '', - statusList: [{ value: 0, label: '未培训' }, { value: 1, label: '培训中' }, { - value: 2, - label: '已培训(合格)' - }, { value: 3, label: '已培训(不合格)' }, { value: 9, label: '申请中' }], - STATUS: '', add: false, // 新增按钮 del: false, // 删除按钮 edit: false // 修改按钮 @@ -138,7 +116,7 @@ export default { getList() { this.listLoading = true requestFN( - '/xgf/user/getAppointApproveList?showCount=' + this.listQuery.limit + '¤tPage=' + this.listQuery.page, + '/dw/getMapList?showCount=' + this.listQuery.limit + '¤tPage=' + this.listQuery.page, { KEYWORDS: this.KEYWORDS, STATUS: '1', @@ -154,21 +132,6 @@ export default { this.listLoading = false }) }, - handleShow(row) { - this.$refs.userInfos.init(row) - }, - handleFlowShow(row) { - this.$refs.flowInfo.init(row) - }, - handleFlowStepShow(row) { - this.$refs.flowStep.init(row) - }, - approve(row) { - this.$refs.sendUtil.init(row) - }, - getUserInfo(row) { - this.$refs.userInfo.init(row) - }, handleAdd() { const _selectData = this.$refs.multipleTable.selection if (_selectData == null || _selectData.length == 0) { @@ -219,22 +182,11 @@ export default { }) }, getDict: function() { - requestFN( - 'dictionaries/getLevels', - { DICTIONARIES_ID: 'd7d80f08d73a4accbccf4fd3d8d1d867' } - ).then((data) => { + requestFN('dw/getDictionary').then((data) => { this.wenhuachengduList = data.list }).catch((e) => { this.listLoading = false }) - requestFN( - 'dictionaries/getLevels', - { DICTIONARIES_ID: '09e36ac01e9540f8bc84eab1c1a78754' } - ).then((data) => { - this.postList = data.list - }).catch((e) => { - this.listLoading = false - }) } } }