|
@@ -1,5 +1,6 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="log">
|
|
<div class="log">
|
|
|
|
|
+ <PageMain class="vh100">
|
|
|
<div class='btn-box'>
|
|
<div class='btn-box'>
|
|
|
<el-button type="primary" plain class='query-btn'
|
|
<el-button type="primary" plain class='query-btn'
|
|
|
@click='dialogShow'>{{selectedKeys.length?`已选${selectedKeys.length}项`:'筛选条件'}}</el-button>
|
|
@click='dialogShow'>{{selectedKeys.length?`已选${selectedKeys.length}项`:'筛选条件'}}</el-button>
|
|
@@ -12,7 +13,7 @@
|
|
|
<!-- 表格 -->
|
|
<!-- 表格 -->
|
|
|
<ComplexTable :tableData="tableData" :showSelect='false' :columns="listOption.columns" :showIndex="false"
|
|
<ComplexTable :tableData="tableData" :showSelect='false' :columns="listOption.columns" :showIndex="false"
|
|
|
:columnwidth="120" @getList="getList" tableheight='auto' :showSummary='true' :showOperation='false'>
|
|
:columnwidth="120" @getList="getList" tableheight='auto' :showSummary='true' :showOperation='false'>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<template v-slot:search="scope">
|
|
<template v-slot:search="scope">
|
|
|
<Sort :scope="scope.slotData" :globalSortKey="globalSortKey" :globalSortOrder="globalSortOrder"
|
|
<Sort :scope="scope.slotData" :globalSortKey="globalSortKey" :globalSortOrder="globalSortOrder"
|
|
|
@update:sort="handleSortUpdate"></Sort>
|
|
@update:sort="handleSortUpdate"></Sort>
|
|
@@ -28,6 +29,7 @@
|
|
|
<FilterDialog :show='isShow' @close='isShow=false' @sure='filterSure' ref='filterDialogRef' @selectedKeys='selected'
|
|
<FilterDialog :show='isShow' @close='isShow=false' @sure='filterSure' ref='filterDialogRef' @selectedKeys='selected'
|
|
|
routerKey='routerKey'>
|
|
routerKey='routerKey'>
|
|
|
</FilterDialog>
|
|
</FilterDialog>
|
|
|
|
|
+ </PageMain>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -251,11 +253,6 @@ onMounted(() => {
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
<style scoped lang="scss">
|
|
|
.log {
|
|
.log {
|
|
|
- width: 100%;
|
|
|
|
|
- height: calc(100vh - 120px);
|
|
|
|
|
- background: #ffffff;
|
|
|
|
|
- padding: 24px;
|
|
|
|
|
- overflow-y: auto;
|
|
|
|
|
.query-btn {
|
|
.query-btn {
|
|
|
margin-left: 20px;
|
|
margin-left: 20px;
|
|
|
}
|
|
}
|