From 246a3010d8f1f91ae7e2f295cd68301d584e5f78 Mon Sep 17 00:00:00 2001 From: fengachen <373943794@qq.com> Date: Tue, 24 Aug 2021 14:09:28 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A8=E6=A0=BCtooltip=20=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=BB=9F=E4=B8=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- package-lock.json | 2 +- package.json | 2 +- src/components/jero/JFormContainer.vue | 92 +++--- src/views/system/ConfusionList.vue | 20 +- src/views/system/DepartList.vue | 2 + src/views/system/QuartzJobList.vue | 2 +- src/views/system/RoleUserList.vue | 267 ++------------- src/views/system/UserList.vue | 29 +- src/views/system/modules/DeptUserInfo.vue | 30 +- src/views/system/modules/SelectUserModal.vue | 48 ++- src/views/system/modules/SysConfusionForm.vue | 305 +++++++++--------- .../system/modules/SysConfusionModal.vue | 97 +++--- 13 files changed, 348 insertions(+), 550 deletions(-) diff --git a/README.md b/README.md index 43fc48e..e95427e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# aikesheng-qc-administration +# income_payments_client ## Project setup ``` diff --git a/package-lock.json b/package-lock.json index b098f53..1a5a813 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "name": "aikesheng-qc-administration", + "name": "income_payments_client", "version": "0.1.0", "lockfileVersion": 1, "requires": true, diff --git a/package.json b/package.json index 37dedbd..9bf615d 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "aikesheng-qc-administration", + "name": "income_payments_client", "version": "0.1.0", "private": true, "scripts": { diff --git a/src/components/jero/JFormContainer.vue b/src/components/jero/JFormContainer.vue index 8daf9b2..4b2bafe 100644 --- a/src/components/jero/JFormContainer.vue +++ b/src/components/jero/JFormContainer.vue @@ -11,51 +11,59 @@ \ No newline at end of file +.jero-form-container-disabled .ant-select { + -ms-pointer-events: none; + pointer-events: none; +} + +.jero-form-container-disabled .ant-upload-select { + display: none +} + +.jero-form-container-disabled .ant-upload-list { + cursor: grabbing +} + +.jero-form-container-disabled fieldset[disabled] .ant-upload-list { + -ms-pointer-events: auto !important; + pointer-events: auto !important; +} + +.jero-form-container-disabled .ant-upload-list-item-actions .anticon-delete, +.jero-form-container-disabled .ant-upload-list-item .anticon-close { + display: none; +} + diff --git a/src/views/system/ConfusionList.vue b/src/views/system/ConfusionList.vue index 735950c..c09ac2b 100644 --- a/src/views/system/ConfusionList.vue +++ b/src/views/system/ConfusionList.vue @@ -32,7 +32,7 @@
- 新增 + 添加 导出 导入 @@ -85,7 +85,10 @@ 下载 - + 编辑 删除 @@ -104,12 +107,14 @@ import { mixinDevice } from '@/utils/mixin' import { JeroListMixin } from '@/mixins/JeroListMixin' import SysConfusionModal from './modules/SysConfusionModal' + import JEllipsis from "@comp/jero/JEllipsis"; export default { name: 'SysConfusionList', mixins:[JeroListMixin, mixinDevice], components: { - SysConfusionModal + SysConfusionModal, + JEllipsis }, data () { return { @@ -129,17 +134,20 @@ { title:'表名', align:"center", - dataIndex: 'tableName' + dataIndex: 'tableName', + scopedSlots: { customRender: 'text' } }, { title:'字段名', align:"center", - dataIndex: 'fieldName' + dataIndex: 'fieldName', + scopedSlots: { customRender: 'text' } }, { title:'混淆码', align:"center", - dataIndex: 'confusionCode' + dataIndex: 'confusionCode', + scopedSlots: { customRender: 'text' } }, { title: '操作', diff --git a/src/views/system/DepartList.vue b/src/views/system/DepartList.vue index 7204a46..8187adf 100644 --- a/src/views/system/DepartList.vue +++ b/src/views/system/DepartList.vue @@ -467,6 +467,8 @@ export default { this.currSelected = {} this.form.resetFields() this.selectedKeys = [] + //取消选择 清除选中部门id + this.$refs.DeptUserInfo.cancelSelect() // 暂时注释(部门权限组件)没用 2021-08-24 // this.$refs.departAuth.departId = '' }, diff --git a/src/views/system/QuartzJobList.vue b/src/views/system/QuartzJobList.vue index 982c722..0e6eaa1 100644 --- a/src/views/system/QuartzJobList.vue +++ b/src/views/system/QuartzJobList.vue @@ -34,7 +34,7 @@
- 新增 + 添加 导出 diff --git a/src/views/system/RoleUserList.vue b/src/views/system/RoleUserList.vue index 6346f15..a4a5366 100644 --- a/src/views/system/RoleUserList.vue +++ b/src/views/system/RoleUserList.vue @@ -21,7 +21,7 @@
- 新建角色 + 添加角色 批量删除
@@ -36,12 +36,18 @@ :pagination="ipagination" :loading="loading" :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" + :expandedRowKeys="expandedRowKeys" + @expandedRowsChange="handleExpandedRowsChange" @change="handleTableChange"> 授权 编辑 - 删除 + 删除 +
@@ -51,10 +57,11 @@ diff --git a/src/views/system/UserList.vue b/src/views/system/UserList.vue index e7fd2be..f221360 100644 --- a/src/views/system/UserList.vue +++ b/src/views/system/UserList.vue @@ -46,7 +46,10 @@ 编辑 删除
- +
@@ -59,17 +62,18 @@ diff --git a/src/views/system/modules/SysConfusionModal.vue b/src/views/system/modules/SysConfusionModal.vue index c6bf23c..aaa7655 100644 --- a/src/views/system/modules/SysConfusionModal.vue +++ b/src/views/system/modules/SysConfusionModal.vue @@ -1,60 +1,61 @@ \ No newline at end of file +} +