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 @@
+ :title="title"
+ :width="width"
+ :visible="visible"
+ switchFullscreen
+ @ok="handleOk"
+ :okButtonProps="{ class:{'jee-hidden': disableSubmit} }"
+ @cancel="handleCancel"
+ cancelText="关闭">
\ No newline at end of file
+}
+