diff --git a/src/views/corpInfo/user/components/edit.vue b/src/views/corpInfo/user/components/edit.vue index ffe26cf..eda6399 100644 --- a/src/views/corpInfo/user/components/edit.vue +++ b/src/views/corpInfo/user/components/edit.vue @@ -42,7 +42,7 @@ - + 如果修改手机号,登录密码则会变成初始密码“Aa@123456789” @@ -63,18 +63,90 @@ 补充证照信息 - - - - - + + + + + + + + + + + + + + + + + + + + + + + + 否 是 + + + + + + + + + + + + + + + + + + + + + + + + + + + + (若新上传人脸图片将覆盖旧人脸信息,不上传则不做修改) + * 图像格式:JPEG、JPG、PNG、BMP + * 图像大小:不超过1M。 + * 图像分辨率:大于32×32像素,小于4096×4096像素,人脸占比不低于64×64像素。 + (如无合适照片请该人员登陆曹港APP中进行人脸照片采集) + + + @@ -151,33 +223,6 @@ - - - - - - - - - - - - - - - - - - - @@ -366,30 +411,6 @@ - - - - - - - * 图像格式:JPEG、JPG、PNG、BMP - * 图像大小:不超过3M。 - * 图像分辨率:大于32×32像素,小于4096×4096像素,人脸占比不低于64×64像素。 - (如无合适照片请该人员登陆秦港APP中进行人脸照片采集) - - - @@ -441,7 +462,8 @@ - 保 存 + 保 存 + 校 验 返 回 @@ -732,6 +754,7 @@ export default { } } return { + ISCHECK: false, dayTime: [], LevelsData: [], dialogFormEditDate: false, @@ -775,7 +798,7 @@ export default { { validator: hasUser, trigger: 'blur' } ], EMAIL: [ - { required: false, message: '请输入邮箱', trigger: 'blur' }, + { required: true, message: '请输入邮箱', trigger: 'blur' }, { pattern: /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(.[a-zA-Z0-9_-])+/, message: '请输入正确的邮箱' @@ -878,8 +901,11 @@ export default { letTypeOfWorkType: 'select', USER_ID_CARD: '', PERSONNEL_TYPE: '', - userCerList: [] + userCerList: [], + face_file: [], + CORPINFO_NAME: '' }, + IMGFILES_ID: '', uesrInfoDic: { minzuList: [], // 民族 0a0e406f27f74ee698fe9979d25f62dd zhengzhimianmaoList: [], // 政治面貌 6351efdd12dc4730952e5d195718e252 @@ -988,6 +1014,9 @@ export default { this.getScheduleAll() this.getDict() // this.getLearnerCategory() // 学员类型已取消 + if (this.$parent.IMGFILES_ID != '') { + this.IMGFILES_ID = this.$parent.IMGFILES_ID + } if (this.$parent.USER_ID == '') { this.handleAdd() } else { @@ -995,6 +1024,41 @@ export default { } }, methods: { + goCheck() { + if (this.form.USER_ID_CARD && this.form.USERNAME) { + const phoneJudge = /^(13[0-9]|14[579]|15[0-3,5-9]|16[6]|17[0135678]|18[0-9]|19[0-9])\d{8}$/ + const phoneResult = phoneJudge.test(this.form.USERNAME) + const cardJudge = /^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/ + const cardResult = cardJudge.test(this.form.USER_ID_CARD) + if (phoneResult && cardResult) { + console.log('格式校验通过') + requestFN( + 'user/goCheck', + { + CARD_NO: this.form.USER_ID_CARD, + USER_ID: this.form.USER_ID, + USERNAME: this.form.USERNAME + } + ).then((data) => { + if (data.result === 'success') { + this.$message.success('验证通过') + this.ISCHECK = true + } else { + this.$message.error('验证失败,请确认身份证号与手机号是否正确') + this.ISCHECK = false + } + }).catch((e) => { + this.listLoading = false + this.ISCHECK = false + }) + } else { + this.ISCHECK = false + } + } else { + this.$message.warning('请确认身份证号与手机号后进行校验') + this.ISCHECK = false + } + }, getScheduleAll() { requestFN( 'schedule/getData', @@ -1260,6 +1324,7 @@ export default { this.form = { ...this.form, ...data.pd, ...data.licenseinfor } // this.form = Object.assign({}, this.form, data.pd, data.licenseinfor) // copy obj this.form.userCerList = data.userCerList + this.form.face_file = data.face_file if (this.form.ROLE_ID != null && this.form.ROLE_ID != '') { // 将字符串转换成数组,此时是字符串数组 console.log(typeof (this.form.ROLE_ID), '00000000') @@ -1275,7 +1340,7 @@ export default { } this.form.ROLE_ID = arrString // this.form.PASSWORD = 'Aa@123456789' - if (this.form.USER_ID_CARD || this.form.IS_ONLINELEARNING == '1') { + if (this.form.IS_ONLINELEARNING == '1') { this.$set(this.form, 'ISSTUDENT', true) } this.form.USERAVATARURL = this.form.USERAVATARURL_CONVERT @@ -1309,10 +1374,84 @@ export default { this.$forceUpdate() return false }, + goPush(row) { + requestFN( + 'user/goPush', + { + USER_ID: row.USER_ID, + STATUS: row.STATUS, + BZ: row.BZ, + SKIN: row.SKIN, + PHONE: row.PHONE, + NUMBER: row.NUMBER, + ISMAIN: row.ISMAIN, + OPENID: row.APPID, + SORT: row.SORT, + LEARNERCATEGORY: row.LEARNERCATEGORY, + USERAVATARPREFIX: row.USERAVATARPREFIX, + USERAVATARURL: row.USERAVATARURL, + SHIFTDUTYONE: row.SHIFTDUTYONE, + SHIFTDUTYTWO: row.SHIFTDUTYTWO, + DURATION: row.DURATION, + WORKSTATUS: row.WORKSTATUS, + WORKPERIOD: row.WORKPERIOD, + PERSONNEL_TYPE: row.PERSONNEL_TYPE, + TITLE: row.TITLE, + ISSTATE: row.ISSTATE, + INCUMBENCY: row.INCUMBENCY, + WORKING_DATE: row.WORKING_DATE, + ENTRY_DATE: row.ENTRY_DATE, + TYPE_OF_WORK: row.TYPE_OF_WORK, + DUTIES: row.DUTIES, + DEGREE_OF_EDUCATION: row.DEGREE_OF_EDUCATION, + DATE_OF_BIRTH: row.DATE_OF_BIRTH, + POLITICAL_OUTLOOK: row.POLITICAL_OUTLOOK, + CARD_NO: row.CARD_NO, + USERNAME: row.USERNAME, + NAME: row.NAME, + CORPINFO_ID: row.CORPINFO_ID, + CORPINFO_NAME: row.CORPINFO_NAME || '', + DEPARTMENT_ID: row.DEPARTMENT_ID, + DEPARTMENT_NAME: row.DEPARTMENT_NAME, + IMGFILES_ID: row.IMGFILES_ID, + FOREIGN_KEY: row.FOREIGN_KEY, + FILEPATH: row.FILEPATH, + EMAIL: row.EMAIL || '', + CARD_TYPE: '111', + CARD_TYPE_NAME: '身份证', + NATION: row.NATION || '', + SEX: row.SEX || '', + USER_TYPE: '1', + ISDELETE: row.ISDELETE + } + ).then((data) => { + if (data.result === 'success') { + this.$message.success('推送成功') + this.$parent.activeName = 'List' + } else { + this.$message.error('推送失败,' + data.msg) + this.$parent.activeName = 'List' + } + }).catch((e) => { + this.listLoading = false + this.$parent.activeName = 'List' + }) + }, confirm() { // debugger // this.uploadImgByZhengshu(this.form.USER_ID) // 保存证书信息 this.$refs.form.validate(valid => { + if (this.$refs.uploadUserAvatar.uploadFiles.length < 1 && this.form.face_file.length < 1) { + this.$message({ + message: '请上传人脸照片', + type: 'error' + }) + return false + } + let isUpdateFace = '0' + if (this.$refs.uploadUserAvatar.uploadFiles.length > 0) { + isUpdateFace = '1' + } if (this.form.SHIFTDUTYONE) { // var if (!this.form.SHIFTDUTYTWO || this.selectPeriod.DURATION == undefined) { @@ -1331,11 +1470,10 @@ export default { // return false // } if (valid) { - console.log(this.selectPeriod.WORKSTATUS) - console.log(this.form.WORKSTATUS) this.form.WORKSTATUS = this.selectPeriod.WORKSTATUS this.form.DURATION = this.selectPeriod.DURATION this.form.WORKPERIOD = this.selectPeriod.WORKPERIOD + console.log(this.form) if (this.dialogType == 'saveUser') { this.form.ROLE_ID = this.form.ROLE_ID.join(',') this.listLoading = true @@ -1346,11 +1484,10 @@ export default { this.listLoading = false if (this.form.ISSTUDENT) { this.uploadImgByZhengshu(data.USER_ID) + this.uploadImgByFace(data.USER_ID) + this.$parent.activeName = 'List' } else { - this.$message({ - message: '操作成功', - type: 'success' - }) + this.uploadImgByFace(data.USER_ID) this.$parent.activeName = 'List' } }).catch((e) => { @@ -1370,17 +1507,20 @@ export default { this.listLoading = true requestFN( '/user/' + this.dialogType, - this.form + { + IMGFILES_ID: this.IMGFILES_ID, // 旧人脸图片 + isUpdateFace: isUpdateFace, + ...this.form + } ).then((data) => { this.listLoading = false if (this.form.ISSTUDENT) { this.uploadImgByZhengshu(this.form.USER_ID) + this.uploadImgByFace(this.form.USER_ID) + this.goPush(this.form) } else { - this.$message({ - message: '操作成功', - type: 'success' - }) - this.$parent.activeName = 'List' + this.uploadImgByFace(this.form.USER_ID) + this.goPush(this.form) } }).catch((e) => { this.listLoading = false @@ -1391,17 +1531,20 @@ export default { this.listLoading = true requestFN( '/user/' + this.dialogType, - this.form + { + IMGFILES_ID: this.IMGFILES_ID, // 旧人脸图片 + isUpdateFace: isUpdateFace, + ...this.form + } ).then((data) => { this.listLoading = false if (this.form.ISSTUDENT) { this.uploadImgByZhengshu(this.form.USER_ID) + this.uploadImgByFace(this.form.USER_ID) + this.goPush(this.form) } else { - this.$message({ - message: '操作成功', - type: 'success' - }) - this.$parent.activeName = 'List' + this.uploadImgByFace(this.form.USER_ID) + this.goPush(this.form) } }).catch((e) => { this.listLoading = false @@ -1413,21 +1556,6 @@ export default { } }) }, - /* 用户头像处理 Begin */ - handleChangeIMG(file, fileList) { - const types = ['image/jpeg', 'image/jpg', 'image/png'] - const isImage = types.includes(file.raw.type) - if (!isImage) { - this.$message.error('上传图片只能是 JPG、JPEG、PNG 格式!') - fileList.splice(0, fileList.length) - } else { - this.getBase64(file.raw).then(res => { - this.form.USERAVATARPREFIX = res.substring(0, res.indexOf('base64,') + 7) - this.form.USERAVATARURL = res.substring(res.indexOf('base64,') + 7) - this.form.USERAVATARURL_CONVERT = res.substring(res.indexOf('base64,') + 7) - }) - } - }, getBase64(file) { return new Promise(function(resolve, reject) { const reader = new FileReader() @@ -1513,6 +1641,12 @@ export default { } }, getDict: function() { + if (this.uesrInfoDic.minzuList.length == 0) { + this.getDicListByPID('0a0e406f27f74ee698fe9979d25f62dd', '', 'minzuList') + } + if (this.uesrInfoDic.xingbieList.length == 0) { + this.getDicListByPID('21501808bbc344d593fbf9ccfe6c4531', '', 'xingbieList') + } requestFN( '/shiftworkrules/listAll', { @@ -1542,9 +1676,6 @@ export default { }, ISSTUDENTCK() { if (this.form.ISSTUDENT || this.dialogFormLicenseInformation) { - if (this.uesrInfoDic.minzuList.length == 0) { - this.getDicListByPID('0a0e406f27f74ee698fe9979d25f62dd', '', 'minzuList') - } if (this.uesrInfoDic.zhengzhimianmaoList.length == 0) { this.getDicListByPID('6351efdd12dc4730952e5d195718e252', '', 'zhengzhimianmaoList') } @@ -1557,9 +1688,6 @@ export default { if (this.uesrInfoDic.zaizhiqingkuangList.length == 0) { this.getDicListByPID('548764b5d4bf4bd7a18ef88274ef49e4', '', 'zaizhiqingkuangList') } - if (this.uesrInfoDic.xingbieList.length == 0) { - this.getDicListByPID('21501808bbc344d593fbf9ccfe6c4531', '', 'xingbieList') - } this.getDicListByPID('09e36ac01e9540f8bc84eab1c1a78754', '', 'zhiwuList') this.getDicListByPID('945a6b10e59946078b500f0fbafa8679', '', 'zhichengList') this.getDicListByPID('55484e491a5e442d839c4595380713ec', '', 'gongzhongList') @@ -1637,6 +1765,21 @@ export default { this.dialogImageUrl = file.url this.dialogVisible = true }, + /* 用户头像处理 Begin */ + handleChangeIMG(file, fileList) { + const types = ['image/jpeg', 'image/jpg', 'image/png'] + const isImage = types.includes(file.raw.type) + if (!isImage) { + this.$message.error('上传图片只能是 JPG、JPEG、PNG 格式!') + fileList.splice(0, fileList.length) + } else { + this.getBase64(file.raw).then(res => { + this.form.USERAVATARPREFIX = res.substring(0, res.indexOf('base64,') + 7) + this.form.USERAVATARURL = res.substring(res.indexOf('base64,') + 7) + this.form.USERAVATARURL_CONVERT = res.substring(res.indexOf('base64,') + 7) + }) + } + }, handleExceed(files, fileList) { this.$message.warning(`当前限制选择 1 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`) }, @@ -1645,6 +1788,14 @@ export default { this.form.USERAVATARURL = '' this.form.USERAVATARURL_CONVERT = '' }, + handleChangeIMGFace(file, fileList) { + const types = ['image/jpeg', 'image/jpg', 'image/png'] + const isImage = types.includes(file.raw.type) + if (!isImage) { + this.$message.error('上传图片只能是 JPG、JPEG、PNG 格式!') + fileList.pop() + } + }, handleChangeIMGZhengshu(file, fileList) { const types = ['image/jpeg', 'image/jpg', 'image/png'] const isImage = types.includes(file.raw.type) @@ -1656,6 +1807,9 @@ export default { beforeFileUploadByZhengshu(file) { this.certificate_files.push(file) }, + beforeFileUploadByFace(file) { + this.form.face_file.push(file) + }, uploadImgByZhengshu(userId) { this.$refs.upload.submit() if (this.certificate_files.length > 0) { @@ -1667,6 +1821,25 @@ export default { } formData.append('FOREIGN_KEY', userId) formData.append('TYPE', 18) + upload( + '/imgfiles/add', + formData + ).then((data) => { + }).catch((e) => { + }) + } + }, + uploadImgByFace(userId) { + this.$refs.uploadUserAvatar.submit() + if (this.form.face_file.length > 0) { + const formData = new FormData() + for (var i = 0; i < this.form.face_file.length; i++) { + if (this.form.face_file[i]) { + formData.append('FFILE', this.form.face_file[i]) + } + } + formData.append('FOREIGN_KEY', userId) + formData.append('TYPE', 30) upload( '/imgfiles/add', formData @@ -1675,7 +1848,6 @@ export default { message: '操作成功', type: 'success' }) - this.$parent.activeName = 'List' }).catch((e) => { }) } else { @@ -1683,7 +1855,6 @@ export default { message: '操作成功', type: 'success' }) - this.$parent.activeName = 'List' } }, deleteCertificate(index) { diff --git a/src/views/corpInfo/user/components/list.vue b/src/views/corpInfo/user/components/list.vue index c96686f..059f7ea 100644 --- a/src/views/corpInfo/user/components/list.vue +++ b/src/views/corpInfo/user/components/list.vue @@ -92,8 +92,9 @@ 排班 排班表 - 编辑 - 删除 + 编辑 + 删除 + 推送 @@ -441,6 +442,67 @@ export default { // this.getLearnerCategory() // 学员类型已取消 }, methods: { + goPush(row) { + requestFN( + 'user/goPush', + { + USER_ID: row.USER_ID, + STATUS: row.STATUS, + BZ: row.BZ, + SKIN: row.SKIN, + PHONE: row.PHONE, + NUMBER: row.NUMBER, + ISMAIN: row.ISMAIN, + OPENID: row.APPID, + SORT: row.SORT, + LEARNERCATEGORY: row.LEARNERCATEGORY, + USERAVATARPREFIX: row.USERAVATARPREFIX, + USERAVATARURL: row.USERAVATARURL, + SHIFTDUTYONE: row.SHIFTDUTYONE, + SHIFTDUTYTWO: row.SHIFTDUTYTWO, + DURATION: row.DURATION, + WORKSTATUS: row.WORKSTATUS, + WORKPERIOD: row.WORKPERIOD, + PERSONNEL_TYPE: row.PERSONNEL_TYPE, + TITLE: row.TITLE, + ISSTATE: row.ISSTATE, + INCUMBENCY: row.INCUMBENCY, + WORKING_DATE: row.WORKING_DATE, + ENTRY_DATE: row.ENTRY_DATE, + TYPE_OF_WORK: row.TYPE_OF_WORK, + DUTIES: row.DUTIES, + DEGREE_OF_EDUCATION: row.DEGREE_OF_EDUCATION, + DATE_OF_BIRTH: row.DATE_OF_BIRTH, + POLITICAL_OUTLOOK: row.POLITICAL_OUTLOOK, + CARD_NO: row.CARD_NO, + USERNAME: row.USERNAME, + NAME: row.NAME, + CORPINFO_ID: row.CORPINFO_ID, + CORPINFO_NAME: row.CORPINFO_NAME || '', + DEPARTMENT_ID: row.DEPARTMENT_ID, + DEPARTMENT_NAME: row.DEPARTMENT_NAME, + IMGFILES_ID: row.IMGFILES_ID, + FOREIGN_KEY: row.FOREIGN_KEY, + FILEPATH: row.FILEPATH, + EMAIL: row.EMAIL || '', + CARD_TYPE: '111', + CARD_TYPE_NAME: '身份证', + NATION: row.NATION || '', + SEX: row.SEX || '', + USER_TYPE: '1', + ISDELETE: row.ISDELETE + } + ).then((data) => { + if (data.result === 'success') { + this.$message.success('推送成功') + this.getList() + } else { + this.$message.error('推送失败,' + data.msg) + } + }).catch((e) => { + this.listLoading = false + }) + }, // schedulingChange(e) { // // console.log(e) // // this.PARENTID = e @@ -669,8 +731,9 @@ export default { this.$parent.activeName = 'Edit' this.$parent.USER_ID = '' }, - handleEdit(USER_ID) { - this.$parent.USER_ID = USER_ID + handleEdit(row) { + this.$parent.USER_ID = row.USER_ID + this.$parent.IMGFILES_ID = row.IMGFILES_ID this.$parent.activeName = 'Edit' }, getQuery() { @@ -732,7 +795,8 @@ export default { SHIFTDUTYONE: this.SHIFTDUTYONE, SHIFTDUTYTWO: this.SHIFTDUTYTWO, IS_HAZARDCONFIRMER: this.IS_HAZARDCONFIRMER, - USER_ID: this.USER_ID + USER_ID: this.USER_ID, + ISPUSH: '1' } ).then((data) => { this.listLoading = false @@ -862,7 +926,7 @@ export default { }).catch(() => { }) }, - handleDelete(id, name) { + handleDelete(id, name, ispush) { this.$confirm('确定要删除[' + name + ']吗?', { confirmButtonText: '确定', cancelButtonText: '取消', @@ -872,7 +936,8 @@ export default { requestFN( '/user/deleteUser', { - USER_ID: id + USER_ID: id, + ISPUSH: ispush } ).then(() => { this.$message({ diff --git a/src/views/corpInfo/userCenter/components/edit.vue b/src/views/corpInfo/userCenter/components/edit.vue new file mode 100644 index 0000000..eda6399 --- /dev/null +++ b/src/views/corpInfo/userCenter/components/edit.vue @@ -0,0 +1,2085 @@ + + + + + {{ this.$parent.USER_ID == '' ? '新增用户' : '编辑用户' }} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 如果修改手机号,登录密码则会变成初始密码“Aa@123456789” + + + + + + + + + + 补充证照信息 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 否 + 是 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (若新上传人脸图片将覆盖旧人脸信息,不上传则不做修改) + * 图像格式:JPEG、JPG、PNG、BMP + * 图像大小:不超过1M。 + * 图像分辨率:大于32×32像素,小于4096×4096像素,人脸占比不低于64×64像素。 + (如无合适照片请该人员登陆曹港APP中进行人脸照片采集) + + + + + + + + + + + + + + + + + + + + 当前班状 + + + + + {{ item.period.WORKSTATUS=='1'?'上班':'休班' }} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{ item.NAME }} + + + + + + {{ form.letDutiesType === 'select' ? '输入' : '选择' }} + + + + + + + + + + {{ item.NAME }} + + + + + + {{ form.letTitleType === 'select' ? '输入' : '选择' }} + + + + + + + + + + + + {{ item.NAME }} + + + + + + {{ form.letTypeOfWorkType === 'select' ? '输入' : '选择' }} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + * 图像格式:JPG、JPEG、PNG。 + + + + + + + + + + + + + + + 保 存 + 校 验 + 返 回 + + + + + + + + + + + 男 + 女 + + + + + + + {{ item.NAME }} + + + + + + {{ form.inforpostType === 'select' ? '输入' : '选择' }} + + + + + + + + {{ item.NAME }} + + + + + + {{ form.infortitleType === 'select' ? '输入' : '选择' }} + + + + + + + + {{ item.NAME }} + + + + + + {{ form.inforworkType === 'select' ? '输入' : '选择' }} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 当前班状 + + + + + {{ item.period.WORKSTATUS == '1' ? '上班' : '休班' }} + + + + + + + + + + + + + + + {{ data.day.split('-').slice(2).join() }} + + + + 上班 + 休班 + + + + + + + + + + + + + + + + diff --git a/src/views/corpInfo/userCenter/components/list.vue b/src/views/corpInfo/userCenter/components/list.vue new file mode 100644 index 0000000..54aea5f --- /dev/null +++ b/src/views/corpInfo/userCenter/components/list.vue @@ -0,0 +1,1315 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 一键密码重置 + + + 导入 + + + 导出 + + + + + + + 搜索 + + + 重置 + + + + + + + + + + + + + + + + + {{ row.SHIFTDUTYONENAME }}-{{ row.SHIFTDUTYTWONAME }} + 全班 + + + + + + 重置密码 + 帐号解锁 + + 排班 + 排班表 + + 编辑 + 删除 + 推送 + + + + + + 新增 + + + + + + + + + + + + {{ data.day.split('-').slice(2).join() }} + + + + 上班 + 休班 + + + + + + + + + + + + + + + + + + 上传附件 + + + 导出模板 + + + + + + + + + + + + + + + + + + + + + 当前班状 + + + + + {{ item.period.WORKSTATUS=='1'?'上班':'休班' }} + + + + + + + + + + + + + + + + diff --git a/src/views/corpInfo/userCenter/index.vue b/src/views/corpInfo/userCenter/index.vue new file mode 100644 index 0000000..80f56d4 --- /dev/null +++ b/src/views/corpInfo/userCenter/index.vue @@ -0,0 +1,34 @@ + + + + + + + + + + diff --git a/src/views/hiddenApi/publicMethod/list.vue b/src/views/hiddenApi/publicMethod/list.vue index 76168b7..22e2de2 100644 --- a/src/views/hiddenApi/publicMethod/list.vue +++ b/src/views/hiddenApi/publicMethod/list.vue @@ -108,7 +108,6 @@ -