|
|
<div class="cache-container">
|
|
|
<el-row>
|
|
|
<el-col :span="24">
|
|
|
<div class="flex-div-start margin-top-bottom-10">
|
|
|
<el-input class="margin-right-10" v-model="keyWords" placeholder="输入关键字" />
|
|
|
|
|
|
<div class="flex-div-start">
|
|
|
|
|
|
<el-button type="primary" @click="onBtnSearch()" style="margin-left: 10px">搜索</el-button>
|
|
|
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
<el-row class="margin-top-bottom-10">
|
|
|
<el-col :span="24" class="flex-div-start margin-bottom-10">
|
|
|
|
|
|
<el-check-tag class="tag-item" v-for="(item,index) in tagData" :checked="checkedId==item.id" @click="changeTag(item.id)">{{item.name}}</el-check-tag>
|
|
|
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row class="margin-top-bottom-10">
|
|
|
<el-col :span="24" class="flex-div-start margin-bottom-10">
|
|
|
|
|
|
<!-- <span>匹配项:{{num}}个</span>-->
|
|
|
<span>[筛选:{{num}}个]</span>
|
|
|
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row class="margin-bottom-50">
|
|
|
<el-col :span="24" class="table-height">
|
|
|
<cm-table-page v-show="tableDataList" :columns="columns" :dataList="tableDataList" @loaddata="loadTableDataList"
|
|
|
:showIndex="true" :total="count" :showSelection="false"
|
|
|
:showBorder="true" :loading="false" :pageSize="pageSize"
|
|
|
:showPage="true" :showTools="true" :height="(height - 500)">
|
|
|
<template #tools="{scope}">
|
|
|
<el-button type="text" size="small" @click.prevent="handleView(scope.row,scope.$index)">
|
|
|
查看
|
|
|
</el-button>
|
|
|
</template>
|
|
|
</cm-table-page>
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
</div>
|
|
|
<cm-dialog :title="titleName" width="90%" :showDialogVisible="cacheVisible" @hidedialog="closeDialog" :showCancelBtn="true" :showFooter="false">
|
|
|
<template v-slot>
|
|
|
<div class="view-container">
|
|
|
<div class="view-title">Value:</div>
|
|
|
<div class="view-detail">
|
|
|
<div class="detail-data">
|
|
|
{{viewData}}
|
|
|
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
<div class="margin-top flex-center ">
|
|
|
<el-button @click="cancelBtn">取消</el-button>
|
|
|
</div>
|
|
|
</template>
|
|
|
</cm-dialog> |
...
|
...
|
|