diff --git a/src/assets/less/common.less b/src/assets/less/common.less
index c097928..b8535a3 100644
--- a/src/assets/less/common.less
+++ b/src/assets/less/common.less
@@ -99,8 +99,14 @@
}
}
+/*重置按钮*/
.reset-button {
color: #08B6AF;
background: rgba(8,182,175,0.10);
border: 1px solid #08b6af;
}
+
+/*表格滚动条*/
+.ant-table-body {
+ overflow-x: auto!important;
+}
\ No newline at end of file
diff --git a/src/views/mailManagement/ContractMail.vue b/src/views/mailManagement/ContractMail.vue
index c1cf270..50784e6 100644
--- a/src/views/mailManagement/ContractMail.vue
+++ b/src/views/mailManagement/ContractMail.vue
@@ -7,27 +7,27 @@
-
+
-
+
-
+
-
+
-
+
查询
重置
diff --git a/src/views/system/UserList.vue b/src/views/system/UserList.vue
index cfa5780..106294c 100644
--- a/src/views/system/UserList.vue
+++ b/src/views/system/UserList.vue
@@ -88,7 +88,7 @@
bordered
size="middle"
rowKey="id"
- :scroll="{x:true}"
+ :scroll="{x: 1600}"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
@@ -163,13 +163,13 @@ export default {
title: '用户账号',
align: 'center',
dataIndex: 'username',
- width: 120,
+ width: 280,
scopedSlots: { customRender: 'text' }
},
{
title: '用户姓名',
align: 'center',
- width: 160,
+ width: 280,
dataIndex: 'realname',
scopedSlots: { customRender: 'text' }
},
@@ -190,14 +190,14 @@ export default {
{
title: '角色类型',
align: 'center',
- width: 100,
+ width: 280,
dataIndex: 'roleName',
scopedSlots: { customRender: 'text' }
},
{
title: '组织机构',
align: 'center',
- width: 180,
+ width: 280,
dataIndex: 'departIds_dictText',
scopedSlots: { customRender: 'text' }
},
@@ -230,6 +230,7 @@ export default {
{
title: '操作',
dataIndex: 'action',
+ fixed: 'right',
scopedSlots: { customRender: 'action' },
align: 'center'
}