|
|
@@ -1,9 +1,8 @@
|
|
|
<template>
|
|
|
<div class="app-container">
|
|
|
-
|
|
|
+ <div class="main-search-box">
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true"
|
|
|
- v-show="showSearch"
|
|
|
- label-width="100px">
|
|
|
+ v-show="showSearch">
|
|
|
|
|
|
<el-form-item label="组织机构" prop="orgId" class="formTreeItem">
|
|
|
<tree-select
|
|
|
@@ -40,21 +39,29 @@
|
|
|
align="right" type="month" placeholder="请选择查询时间">
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
+ </el-form>
|
|
|
|
|
|
+ <el-row :gutter="10" >
|
|
|
+ <el-col :span="1.5">
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
<el-button type="primary" icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
<el-button type="primary" icon="el-icon-download" size="mini" @click="handleExport"
|
|
|
v-hasPermi="['core:resumptionReport:export']">导出
|
|
|
</el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- <h1 class="title" style="text-align:center;">{{ this.title}}</h1>
|
|
|
- <el-row :gutter="10" class="mb8">
|
|
|
+ </el-col>
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
|
+ </div>
|
|
|
+ <div class="main-search-box" style="margin-bottom: 0;">
|
|
|
+ <h1 class="title" style="text-align:center;">{{ this.title}}</h1>
|
|
|
+ </div>
|
|
|
<el-table
|
|
|
border
|
|
|
- height="700"
|
|
|
+ height="616"
|
|
|
size="small"
|
|
|
v-loading="loading" :data="checkList" @selection-change="handleSelectionChange">
|
|
|
|
|
|
@@ -64,7 +71,7 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="地区" align="center" prop="city" />
|
|
|
- <el-table-column label="单位名称" align="center" prop="orgName" width="100"/>
|
|
|
+ <el-table-column label="单位名称" align="center" prop="orgName" width="240"/>
|
|
|
<el-table-column label="网点数量" align="left" prop="networkNumber" width="100"/>
|
|
|
|
|
|
<el-table-column label="总计" align="center">
|