Browse Source

全局样式

dev
kilo 2 years ago
parent
commit
493ff421b6
  1. 10
      src/assets/less/TableExpand.less
  2. 6
      src/views/dashboard/HomePage.vue
  3. 1
      src/views/system/DictList.vue
  4. 2
      src/views/system/SysAnnouncementList.vue
  5. 1
      src/views/system/UserAnnouncementList.vue

10
src/assets/less/TableExpand.less

@ -12,4 +12,14 @@
&.ant-table-wrapper .ant-table-content {
overflow-x: auto;
}
thead tr th {
position:sticky;
top:0;
}
.ant-table-body{
overflow-y: auto;
max-height: 520px;
}
}

6
src/views/dashboard/HomePage.vue

@ -55,7 +55,7 @@
<a-card class="bottom-card" title="全部应用" style="height: 100%;" :headStyle="{padding:'24'}" :bodyStyle="{padding:'10'}">
<ul class="apply-use" style="list-style-type: none;padding: 0px">
<li class="ant-col-md-3" v-for="(item,index) in userChildren" @click="goRouteView(item.path)">
{{ item.meta.title }}
<a-icon type="bars" style="font-size: 25px"></a-icon> &nbsp;&nbsp;{{ item.meta.title }}
</li>
</ul>
</a-card>
@ -291,6 +291,10 @@ export default {
height: 100%;
}
/deep/.ant-table-scroll{
height: 100%;
}
/deep/.ant-table .ant-table-content {
height: 100%;
}

1
src/views/system/DictList.vue

@ -43,6 +43,7 @@
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
class="j-table-force-nowrap"
@change="handleTableChange">
<span slot="action" slot-scope="text, record">
<a @click="handleEdit(record)">

2
src/views/system/SysAnnouncementList.vue

@ -64,7 +64,7 @@
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:scroll="{y: 460 }"
class="j-table-force-nowrap"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
@change="handleTableChange">

1
src/views/system/UserAnnouncementList.vue

@ -40,6 +40,7 @@
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
class="j-table-force-nowrap"
@change="handleTableChange">
<span slot="action" slot-scope="text, record">
<a @click="showAnnouncement(record)">查看</a>

Loading…
Cancel
Save