修改虚拟清单的高级检索;
2.我的流程页面细节处理
This commit is contained in:
@@ -32,17 +32,17 @@
|
||||
style="top:5%;max-height: 95%;"
|
||||
>
|
||||
<template slot="footer">
|
||||
<!-- <div style="float: left">-->
|
||||
<!-- <a-button :loading="loading" @click="handleReset">{{$t('reset')}}</a-button>-->
|
||||
<!-- <a-button :loading="loading" @click="handleSave">{{$t('SaveQueryCriteria')}}</a-button>-->
|
||||
<!-- </div>-->
|
||||
<div style="float: left">
|
||||
<a-button :loading="loading" @click="handleReset">{{$t('reset')}}</a-button>
|
||||
<a-button :loading="loading" @click="handleSave">{{$t('SaveQueryCriteria')}}</a-button>
|
||||
</div>
|
||||
<a-button :loading="loading" @click="handleCancel">{{$t('close')}}</a-button>
|
||||
<a-button :loading="loading" type="primary" @click="handleOk">{{$t('query')}}</a-button>
|
||||
</template>
|
||||
|
||||
<a-spin :spinning="loading">
|
||||
<a-row>
|
||||
<a-col :sm="24" :md="24">
|
||||
<a-col :sm="24" :md="24-5">
|
||||
|
||||
<a-empty v-if="queryParamsModel.length === 0" style="margin-bottom: 12px;">
|
||||
<div slot="description">
|
||||
@@ -186,6 +186,28 @@
|
||||
|
||||
</a-form>
|
||||
</a-col>
|
||||
<a-col :sm="24" :md="5">
|
||||
<!-- 查询记录 -->
|
||||
|
||||
<a-card class="j-super-query-history-card" :bordered="true">
|
||||
<div slot="title">
|
||||
{{$t('SavedQuery')}}
|
||||
</div>
|
||||
|
||||
<a-empty v-if="saveTreeData.length === 0" class="j-super-query-history-empty" :description="$t('NoQueriesSaved')"/>
|
||||
<a-tree
|
||||
v-else
|
||||
class="j-super-query-history-tree"
|
||||
showIcon
|
||||
:treeData="saveTreeData"
|
||||
:selectedKeys="[]"
|
||||
@select="handleTreeSelect"
|
||||
>
|
||||
</a-tree>
|
||||
</a-card>
|
||||
|
||||
|
||||
</a-col>
|
||||
</a-row>
|
||||
</a-spin>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user