commit
This commit is contained in:
+18
-4
@@ -1,6 +1,7 @@
|
|||||||
const MEMBER_STATISTICS_COMPREHENSIVE_QUERY_FORM = {
|
const MEMBER_STATISTICS_COMPREHENSIVE_QUERY_FORM = {
|
||||||
template: /*language=HTML*/ `
|
template: /*language=HTML*/ `
|
||||||
<el-card shadow="never">
|
<el-card shadow="never">
|
||||||
|
<div :style="{ height: rootExtend ? 'auto' : '60px', 'overflow-y': 'hidden' }">
|
||||||
<el-row type="flex" align="middle" class="query-row">
|
<el-row type="flex" align="middle" class="query-row">
|
||||||
<el-col class="query-row-title">年  度:</el-col>
|
<el-col class="query-row-title">年  度:</el-col>
|
||||||
<el-col class="query-row-content" :span="12">
|
<el-col class="query-row-content" :span="12">
|
||||||
@@ -96,11 +97,12 @@ const MEMBER_STATISTICS_COMPREHENSIVE_QUERY_FORM = {
|
|||||||
type="success">全部
|
type="success">全部
|
||||||
</el-link>
|
</el-link>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col style="width: 40px">
|
<el-col style="width: 50px">
|
||||||
<el-link type="primary"
|
<el-link type="primary"
|
||||||
:underline="false"
|
:underline="false"
|
||||||
@click="personTypeExtend = !personTypeExtend">
|
@click="personTypeExtend = !personTypeExtend">
|
||||||
{{personTypeExtend ? '收起' : '展开'}}
|
<span v-if="!personTypeExtend">展开<i class="el-icon-caret-bottom"></i></span>
|
||||||
|
<span v-if="personTypeExtend">收起<i class="el-icon-caret-top"></i></span>
|
||||||
</el-link>
|
</el-link>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@@ -157,11 +159,12 @@ const MEMBER_STATISTICS_COMPREHENSIVE_QUERY_FORM = {
|
|||||||
type="success">全部
|
type="success">全部
|
||||||
</el-link>
|
</el-link>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col style="width: 40px">
|
<el-col style="width: 50px">
|
||||||
<el-link type="primary"
|
<el-link type="primary"
|
||||||
:underline="false"
|
:underline="false"
|
||||||
@click="userStateExtend = !userStateExtend">
|
@click="userStateExtend = !userStateExtend">
|
||||||
{{userStateExtend ? '收起' : '展开'}}
|
<span v-if="!userStateExtend">展开<i class="el-icon-caret-bottom"></i></span>
|
||||||
|
<span v-if="userStateExtend">收起<i class="el-icon-caret-top"></i></span>
|
||||||
</el-link>
|
</el-link>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@@ -254,6 +257,16 @@ const MEMBER_STATISTICS_COMPREHENSIVE_QUERY_FORM = {
|
|||||||
</el-button>
|
</el-button>
|
||||||
<el-button type="primary" icon="el-icon-search" @click="doSearch">搜索</el-button>
|
<el-button type="primary" icon="el-icon-search" @click="doSearch">搜索</el-button>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mt10" style="text-align: center;">
|
||||||
|
<el-link type="primary"
|
||||||
|
:underline="false"
|
||||||
|
@click="rootExtend = !rootExtend">
|
||||||
|
<span v-if="!rootExtend" style="font-weight: bold">展开<i class="el-icon-caret-bottom"></i></span>
|
||||||
|
<span v-if="rootExtend" style="font-weight: bold">收起<i class="el-icon-caret-top"></i></span>
|
||||||
|
</el-link>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<!--<search @search="doSearch">
|
<!--<search @search="doSearch">
|
||||||
@@ -414,6 +427,7 @@ const MEMBER_STATISTICS_COMPREHENSIVE_QUERY_FORM = {
|
|||||||
return {
|
return {
|
||||||
personTypeExtend: false,
|
personTypeExtend: false,
|
||||||
userStateExtend: false,
|
userStateExtend: false,
|
||||||
|
rootExtend: false,
|
||||||
pageForm: {
|
pageForm: {
|
||||||
isUnit: "",
|
isUnit: "",
|
||||||
isUnion: "",
|
isUnion: "",
|
||||||
|
|||||||
Reference in New Issue
Block a user