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
- })
}
}
}