|
@@ -1,40 +1,167 @@
|
|
|
<template>
|
|
|
<!-- 数据源刷新设置 -->
|
|
|
<div class="data-refresh-setting-wrap">
|
|
|
- <div class="top-box">
|
|
|
- <div class="select-box">
|
|
|
- <span>{{$t('SystemManage.DataRefresh.select_source')}}</span>
|
|
|
- <el-select :placeholder="$t('SystemManage.DataRefresh.select_source_pld')" v-model="Source" @change="handleSourceChange">
|
|
|
- <el-option v-for="item in SourceList" :key="item.Source"
|
|
|
- :label="item.SourceName" :value="item.Source"/>
|
|
|
- </el-select>
|
|
|
- <el-select :placeholder="$t('SystemManage.DataRefresh.select_source_pld')" v-model="SubSource" v-if="SubSourceList.length" @change="handleSubSourceChange">
|
|
|
- <el-option v-for="item in SubSourceList" :key="item.Source"
|
|
|
- :label="$i18nt.locale==='zh'?item.SubSourceName:item.SubSourceNameEn||item.SubSourceName" :value="item.SubSource"/>
|
|
|
- </el-select>
|
|
|
- <el-button type="primary" @click="showDialog(true)"
|
|
|
- v-permission="permissionBtn.sysDepartPermission.refresh_default"
|
|
|
- >{{$t('SystemManage.DataRefresh.default_time')}}</el-button>
|
|
|
+ <div class="top-top">
|
|
|
+ <div class="tab-zone">
|
|
|
+ <div class="tab-item" :class="item.value==settingTab?'active':''" v-for="item in tabList.filter(it => checkPer(it))" :key="item.value" @click="changeTab(item.value)">
|
|
|
+ {{ item.label }}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="refresh-rule-setting" v-if="settingTab=='status'">
|
|
|
+ <el-button type="danger" plain @click="setEdbsRefreshStatus('暂停')" :disabled="!hasStatusSelection">{{$t('SystemManage.DataRefresh.disabled')}}</el-button>
|
|
|
+ <el-button type="primary" plain @click="setEdbsRefreshStatus('启用')" :disabled="!hasStatusSelection">{{$t('SystemManage.DataRefresh.enabled')}}</el-button>
|
|
|
+ <el-button type="primary" @click="openDefaultRefreshStatusDia">{{$t('SystemManage.DataRefresh.default_refresh_rule')}}</el-button>
|
|
|
</div>
|
|
|
-
|
|
|
- <el-input :placeholder="$t('SystemManage.DataRefresh.indicator_name')" prefix-icon="el-icon-search" clearable
|
|
|
- v-model="selectOption.keyWord" @input="selectOptionChange('keyWord')"
|
|
|
- v-if="![34,11].includes(Source)&&Source"></el-input>
|
|
|
-
|
|
|
</div>
|
|
|
- <div class="table-box" v-if="hasSelectOption">
|
|
|
- <div class="table-select" v-loading="selectOptionLoading">
|
|
|
- <div class="select-list">
|
|
|
- <el-select :placeholder="$t('SystemManage.DataRefresh.terminal_code_select')" :no-match-text="$t('SystemManage.DataRefresh.complete_data_source')" clearable
|
|
|
- v-model="selectOption.terminalCode" @change="selectOptionChange('terminalCode')">
|
|
|
- <el-option v-for="i in terminalCodeList" :key="i.TerminalCode"
|
|
|
- :label="i.Name" :value="i.TerminalCode"/>
|
|
|
+ <!-- 刷新时间 -->
|
|
|
+ <template v-if="settingTab=='time'">
|
|
|
+ <div class="top-box">
|
|
|
+ <div class="select-box">
|
|
|
+ <span>{{$t('SystemManage.DataRefresh.select_source')}}</span>
|
|
|
+ <el-select :placeholder="$t('SystemManage.DataRefresh.select_source_pld')" v-model="Source" @change="handleSourceChange">
|
|
|
+ <el-option v-for="item in SourceList" :key="item.Source"
|
|
|
+ :label="item.SourceName" :value="item.Source"/>
|
|
|
</el-select>
|
|
|
- <el-cascader :placeholder="$t('SystemManage.DataRefresh.eta_class_select')" :no-match-text="$t('SystemManage.DataRefresh.complete_data_source')" clearable
|
|
|
- v-model="selectOption.classify" @change="selectOptionChange('classify')"
|
|
|
- :options="edbClassifyList"
|
|
|
- :show-all-levels="false"
|
|
|
- collapse-tags
|
|
|
+ <el-select :placeholder="$t('SystemManage.DataRefresh.select_source_pld')" v-model="SubSource" v-if="SubSourceList.length" @change="handleSubSourceChange">
|
|
|
+ <el-option v-for="item in SubSourceList" :key="item.Source"
|
|
|
+ :label="$i18nt.locale==='zh'?item.SubSourceName:item.SubSourceNameEn||item.SubSourceName" :value="item.SubSource"/>
|
|
|
+ </el-select>
|
|
|
+ <el-button type="primary" @click="showDialog(true)"
|
|
|
+ v-permission="permissionBtn.sysDepartPermission.refresh_default"
|
|
|
+ >{{$t('SystemManage.DataRefresh.default_time')}}</el-button>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <el-input :placeholder="$t('SystemManage.DataRefresh.indicator_name')" prefix-icon="el-icon-search" clearable
|
|
|
+ v-model="selectOption.keyWord" @input="selectOptionChange('keyWord')"
|
|
|
+ v-if="![34,11].includes(Source)&&Source"></el-input>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div class="table-box" v-if="hasSelectOption">
|
|
|
+ <div class="table-select" v-loading="selectOptionLoading">
|
|
|
+ <div class="select-list">
|
|
|
+ <el-select :placeholder="$t('SystemManage.DataRefresh.terminal_code_select')" :no-match-text="$t('SystemManage.DataRefresh.complete_data_source')" clearable
|
|
|
+ v-model="selectOption.terminalCode" @change="selectOptionChange('terminalCode')">
|
|
|
+ <el-option v-for="i in terminalCodeList" :key="i.TerminalCode"
|
|
|
+ :label="i.Name" :value="i.TerminalCode"/>
|
|
|
+ </el-select>
|
|
|
+ <el-cascader :placeholder="$t('SystemManage.DataRefresh.eta_class_select')" :no-match-text="$t('SystemManage.DataRefresh.complete_data_source')" clearable
|
|
|
+ v-model="selectOption.classify" @change="selectOptionChange('classify')"
|
|
|
+ :options="edbClassifyList"
|
|
|
+ :show-all-levels="false"
|
|
|
+ collapse-tags
|
|
|
+ :props="{
|
|
|
+ emitPath:true,
|
|
|
+ value:'ClassifyId',
|
|
|
+ label:'ClassifyName',
|
|
|
+ children:'Children',
|
|
|
+ multiple:true
|
|
|
+ }" />
|
|
|
+ <el-cascader
|
|
|
+ :placeholder="$t('SystemManage.DataRefresh.table_creator')" :no-match-text="$t('SystemManage.DataRefresh.complete_data_source')" style="height: 40px;"
|
|
|
+ v-model="selectOption.user" @change="selectOptionChange('user')"
|
|
|
+ :options="userList"
|
|
|
+ :props="{
|
|
|
+ value: 'ItemId',
|
|
|
+ label: 'ItemName',
|
|
|
+ children: 'Children',
|
|
|
+ emitPath: false,
|
|
|
+ multiple:true,
|
|
|
+ }"
|
|
|
+ collapse-tags
|
|
|
+ :show-all-levels="false"
|
|
|
+ clearable
|
|
|
+ filterable
|
|
|
+ />
|
|
|
+ <el-select :placeholder="table_frequency" v-model="selectOption.frequency" @change="selectOptionChange('frequency')" multiple collapse-tags clearable>
|
|
|
+ <el-option v-for="i in frequencyList" :key="i.value"
|
|
|
+ :label="i.label" :value="i.value"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ <el-select :placeholder="$t('SystemManage.DataRefresh.table_status')" v-model="selectOption.state" @change="selectOptionChange('state')" clearable>
|
|
|
+ <el-option :label="$t('SystemManage.DataRefresh.enable_op')" value="启用"/>
|
|
|
+ <el-option :label="$t('SystemManage.DataRefresh.pause_op')" value="暂停"/>
|
|
|
+ </el-select>
|
|
|
+ </div>
|
|
|
+ <div class="select-other">
|
|
|
+ <el-checkbox :indeterminate="isIndeterminate" v-model="isCheckAll" @change="listCheckAllChange">{{$t('SystemManage.DataRefresh.all_list')}}</el-checkbox>
|
|
|
+ <el-button type="primary" @click="showDialog(false)"
|
|
|
+ v-permission="permissionBtn.sysDepartPermission.refresh_time"
|
|
|
+ :disabled="!tableData.length"
|
|
|
+ >{{$t('SystemManage.DataRefresh.set_time')}}</el-button>
|
|
|
+ <el-button type="primary" @click="isSetStateDialogShow=true"
|
|
|
+ v-permission="permissionBtn.sysDepartPermission.refresh_state"
|
|
|
+ v-if="Source!=2"
|
|
|
+ :disabled="!tableData.length"
|
|
|
+ >{{$t('SystemManage.DataRefresh.set_status')}}</el-button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <el-table :data="tableData" border
|
|
|
+ ref="edbDataRef"
|
|
|
+ @selection-change="selectionChange"
|
|
|
+ @select="selectHandle"
|
|
|
+ @select-all="selectAllHandle"
|
|
|
+ @sort-change="handleSortChange"
|
|
|
+ >
|
|
|
+ <!-- 多选 -->
|
|
|
+ <el-table-column
|
|
|
+ align="center"
|
|
|
+ type="selection"
|
|
|
+ width="55">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column v-for="column in columns" :key="column.key"
|
|
|
+ :prop="column.key"
|
|
|
+ :label="column.label"
|
|
|
+ :min-width="column.minWidth"
|
|
|
+ :sortable="column.sortable?column.sortable:false"
|
|
|
+ align="center"
|
|
|
+ >
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <span v-if="column.key==='IsStop'">
|
|
|
+ {{row.IsStop? $t('SystemManage.DataRefresh.pause_op') : $t('SystemManage.DataRefresh.enable_op') }}
|
|
|
+ </span>
|
|
|
+ <span v-else>
|
|
|
+ {{row[column.key]}}
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ <el-pagination
|
|
|
+ :current-page="currentPage"
|
|
|
+ :page-size="pageSize"
|
|
|
+ :total="total"
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <!-- 刷新状态 - 全拆开吧 -->
|
|
|
+ <template v-if="settingTab=='status'">
|
|
|
+ <div class="refresh-status-container">
|
|
|
+ <div class="refresh-status-search">
|
|
|
+ <div class="refresh-status-search-left">
|
|
|
+ <div class="select-source-box">
|
|
|
+ <span>{{$t('SystemManage.DataRefresh.select_source')}}</span>
|
|
|
+ <el-select :placeholder="$t('SystemManage.DataRefresh.select_source_pld')" v-model="searchParams.Source">
|
|
|
+ <el-option v-for="item in statusSourceList" :key="item.Source"
|
|
|
+ :label="item.SourceName" :value="item.Source"/>
|
|
|
+ </el-select>
|
|
|
+ </div>
|
|
|
+ <el-select :placeholder="$t('SystemManage.DataRefresh.table_status')" v-model="searchParams.Status" @change="searchList"
|
|
|
+ class="select-item-small" clearable>
|
|
|
+ <el-option :label="$t('SystemManage.DataRefresh.enable')" value="启用"/>
|
|
|
+ <el-option :label="$t('SystemManage.DataRefresh.disable')" value="暂停"/>
|
|
|
+ </el-select>
|
|
|
+ <!-- 频度 -->
|
|
|
+ <el-select :placeholder="$t('SystemManage.DataRefresh.table_frequency')" class="select-item-small"
|
|
|
+ v-model="FrequencyArr" multiple collapse-tags clearable>
|
|
|
+ <el-option v-for="i in frequencyList" :key="i.value"
|
|
|
+ :label="i.label" :value="i.value"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ <!-- 指标库分类 -->
|
|
|
+ <el-cascader :placeholder="$t('SystemManage.DataRefresh.edb_classify')"
|
|
|
+ :no-match-text="$t('SystemManage.DataRefresh.complete_data_source')" clearable
|
|
|
+ v-model="ClassifyIdArr" class="select-item-small"
|
|
|
+ :options="statusEdbClassifyList" :show-all-levels="false" collapse-tags
|
|
|
:props="{
|
|
|
emitPath:true,
|
|
|
value:'ClassifyId',
|
|
@@ -42,81 +169,87 @@
|
|
|
children:'Children',
|
|
|
multiple:true
|
|
|
}" />
|
|
|
- <el-cascader
|
|
|
- :placeholder="$t('SystemManage.DataRefresh.table_creator')" :no-match-text="$t('SystemManage.DataRefresh.complete_data_source')" style="height: 40px;"
|
|
|
- v-model="selectOption.user" @change="selectOptionChange('user')"
|
|
|
- :options="userList"
|
|
|
- :props="{
|
|
|
- value: 'ItemId',
|
|
|
- label: 'ItemName',
|
|
|
- children: 'Children',
|
|
|
- emitPath: false,
|
|
|
- multiple:true,
|
|
|
- }"
|
|
|
- collapse-tags
|
|
|
- :show-all-levels="false"
|
|
|
- clearable
|
|
|
- filterable
|
|
|
- />
|
|
|
- <el-select :placeholder="table_frequency" v-model="selectOption.frequency" @change="selectOptionChange('frequency')" multiple collapse-tags clearable>
|
|
|
- <el-option v-for="i in frequencyList" :key="i.value"
|
|
|
- :label="i.label" :value="i.value"
|
|
|
+ <!-- 创建人 -->
|
|
|
+ <el-cascader
|
|
|
+ :placeholder="$t('SystemManage.DataRefresh.table_creator')"
|
|
|
+ :no-match-text="$t('SystemManage.DataRefresh.complete_data_source')" style="height: 40px;"
|
|
|
+ v-model="SysUserIdArr" class="select-item-small"
|
|
|
+ :options="userList" collapse-tags :show-all-levels="false" clearable filterable
|
|
|
+ :props="{
|
|
|
+ value: 'ItemId',
|
|
|
+ label: 'ItemName',
|
|
|
+ children: 'Children',
|
|
|
+ emitPath: false,
|
|
|
+ multiple:true,
|
|
|
+ }"
|
|
|
/>
|
|
|
- </el-select>
|
|
|
- <el-select :placeholder="$t('SystemManage.DataRefresh.table_status')" v-model="selectOption.state" @change="selectOptionChange('state')" clearable>
|
|
|
- <el-option :label="$t('SystemManage.DataRefresh.enable_op')" value="启用"/>
|
|
|
- <el-option :label="$t('SystemManage.DataRefresh.pause_op')" value="暂停"/>
|
|
|
- </el-select>
|
|
|
- </div>
|
|
|
- <div class="select-other">
|
|
|
- <el-checkbox :indeterminate="isIndeterminate" v-model="isCheckAll" @change="listCheckAllChange">{{$t('SystemManage.DataRefresh.all_list')}}</el-checkbox>
|
|
|
- <el-button type="primary" @click="showDialog(false)"
|
|
|
- v-permission="permissionBtn.sysDepartPermission.refresh_time"
|
|
|
- :disabled="!tableData.length"
|
|
|
- >{{$t('SystemManage.DataRefresh.set_time')}}</el-button>
|
|
|
- <el-button type="primary" @click="isSetStateDialogShow=true"
|
|
|
- v-permission="permissionBtn.sysDepartPermission.refresh_state"
|
|
|
- :disabled="!tableData.length"
|
|
|
- >{{$t('SystemManage.DataRefresh.set_status')}}</el-button>
|
|
|
+ <div class="selection-box">
|
|
|
+ <el-checkbox :indeterminate="statusDataSelectionItem.isIndeterminate" v-model="statusDataSelectionItem.isCheckAll"
|
|
|
+ @change="statusListCheckAllChange">{{$t('SystemManage.DataRefresh.all_list')}}</el-checkbox>
|
|
|
+ <span>{{$t('SystemManage.DataRefresh.selected')}}: {{ hasStatusSelection }}</span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <el-input :placeholder="$t('SystemManage.DataRefresh.indicator_name')" prefix-icon="el-icon-search" clearable
|
|
|
+ v-model="searchParams.Keyword" @input="searchList" style="width: 360px;margin-left: 15px;"></el-input>
|
|
|
</div>
|
|
|
- </div>
|
|
|
- <el-table :data="tableData" border
|
|
|
- ref="edbDataRef"
|
|
|
- @selection-change="selectionChange"
|
|
|
- @select="selectHandle"
|
|
|
- @select-all="selectAllHandle"
|
|
|
- @sort-change="handleSortChange"
|
|
|
- >
|
|
|
- <!-- 多选 -->
|
|
|
- <el-table-column
|
|
|
- align="center"
|
|
|
- type="selection"
|
|
|
- width="55">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column v-for="column in columns" :key="column.key"
|
|
|
- :prop="column.key"
|
|
|
- :label="column.label"
|
|
|
- :min-width="column.minWidth"
|
|
|
- :sortable="column.sortable?column.sortable:false"
|
|
|
- align="center"
|
|
|
+ <el-table :data="statusTableData" border
|
|
|
+ ref="statusTableRef"
|
|
|
+ @selection-change="statusSelectionChange"
|
|
|
+ @select="statusSelectHandle"
|
|
|
+ @select-all="statusSelectAllHandle"
|
|
|
+ @sort-change="handleStatusTableSortChange"
|
|
|
>
|
|
|
- <template slot-scope="{row}">
|
|
|
- <span v-if="column.key==='IsStop'">
|
|
|
- {{row.IsStop? $t('SystemManage.DataRefresh.pause_op') : $t('SystemManage.DataRefresh.enable_op') }}
|
|
|
- </span>
|
|
|
- <span v-else>
|
|
|
- {{row[column.key]}}
|
|
|
- </span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- </el-table>
|
|
|
- <el-pagination
|
|
|
- :current-page="currentPage"
|
|
|
- :page-size="pageSize"
|
|
|
- :total="total"
|
|
|
- @current-change="handleCurrentChange"
|
|
|
- />
|
|
|
- </div>
|
|
|
+ <!-- 多选 -->
|
|
|
+ <el-table-column
|
|
|
+ align="center"
|
|
|
+ type="selection"
|
|
|
+ width="55">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" prop="EdbCode" :label="$t('SystemManage.DataRefresh.table_Id')" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{scope.row.EdbCode}}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" prop="EdbName" :label="$t('SystemManage.DataRefresh.table_name')" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{scope.row.EdbName}}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" prop="RelationTime" :label="$t('SystemManage.DataRefresh.table_recent_reference_time')"
|
|
|
+ sortable="custom">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{scope.row.RelationTime}}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" prop="RelationNum" :label="$t('SystemManage.DataRefresh.table_reference_count')"
|
|
|
+ sortable="custom">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span :class="scope.row.RelationNum>0?'table-text-button':''" @click="openReferenceCountDia(scope.row)">{{scope.row.RelationNum}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" prop="IsStop" :label="$t('SystemManage.DataRefresh.table_refresh_status')">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{scope.row.IsStop? $t('SystemManage.DataRefresh.disabled'):$t('SystemManage.DataRefresh.enabled') }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" prop="Operation" :label="$t('Table.column_operations')">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span class="table-text-button" v-if="scope.row.IsStop" @click="enableToggle(scope.row)">{{$t('SystemManage.DataRefresh.enable')}}</span>
|
|
|
+ <!-- v-permission="permissionBtn.outlinkConfigPermission.outlinkListConfig_del" -->
|
|
|
+ <span class="table-text-button" style="color: #C54322;" @click="enableToggle(scope.row)" v-else>{{$t('SystemManage.DataRefresh.disable')}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ <el-pagination
|
|
|
+ :current-page="searchParams.CurrentIndex"
|
|
|
+ :page-size="searchParams.PageSize"
|
|
|
+ :total="statusDataTotal"
|
|
|
+ @current-change="handleStatusListPageNoChange"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
<!-- 默认刷新时间,设置刷新时间 -->
|
|
|
<el-dialog custom-class="refresh-setting-dialog"
|
|
|
:title="dlgTextLangShow((isDefault?'默认':'设置')+'刷新时间')"
|
|
@@ -177,14 +310,21 @@
|
|
|
<el-button type="primary" @click="setRefreshStatus">{{$t('Dialog.confirm_btn')}}</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
+
|
|
|
+ <!-- 默认刷新规则 -->
|
|
|
+ <defaultRefreshStatusDia :show.sync="setDefaultRefreshStatusShow" :ruleData="settingRuleForm" @setRule="setDefaultRefreshRule"/>
|
|
|
+ <referenceCountDia :show.sync="referenceCountShow" :dataList="statusEdbRelationDetailList" />
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import RefreshConfig from './components/refreshConfig.vue';
|
|
|
+import { dataBaseInterface } from '@/api/api.js';
|
|
|
import {dataRefreshInterface,dataAuthInterface} from '@/api/modules/dataApi.js';
|
|
|
+import defaultRefreshStatusDia from './components/defaultRefreshStatusDia.vue';
|
|
|
+import referenceCountDia from './components/referenceCountDia.vue';
|
|
|
export default {
|
|
|
- components: { RefreshConfig },
|
|
|
+ components: { RefreshConfig ,defaultRefreshStatusDia,referenceCountDia},
|
|
|
computed:{
|
|
|
frequencyList() {
|
|
|
return [
|
|
@@ -230,9 +370,23 @@ export default {
|
|
|
{ key: "IsStop", label:/* '刷新状态' */ this.$t('SystemManage.DataRefresh.table_status')},
|
|
|
];
|
|
|
},
|
|
|
+ tabList(){
|
|
|
+ return [
|
|
|
+ { value: "time", label:/* '刷新时间设置' */ this.$t('SystemManage.DataRefresh.time_setting_tab')},
|
|
|
+ { value: "status", label:/* '刷新状态设置' */ this.$t('SystemManage.DataRefresh.status_setting_tab')}
|
|
|
+ ];
|
|
|
+ },
|
|
|
+ hasStatusSelection(){
|
|
|
+ if(this.statusDataSelectionItem.isSelectAll){
|
|
|
+ return this.statusDataTotal - (this.statusDataSelectionItem.selectList ? this.statusDataSelectionItem.selectList.length : 0)
|
|
|
+ }else{
|
|
|
+ return this.statusDataSelectionItem.selectList ? this.statusDataSelectionItem.selectList.length : 0
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ settingTab:'time',
|
|
|
Source:'',
|
|
|
SourceList:[],
|
|
|
SubSource:'',
|
|
@@ -277,9 +431,128 @@ export default {
|
|
|
//已选择/已剔除的指标id
|
|
|
selectList:[],//监听table的select-all select
|
|
|
selectionReactCancel:false,
|
|
|
+
|
|
|
+ // 刷新状态设置
|
|
|
+ settingRuleForm:{},
|
|
|
+ setDefaultRefreshStatusShow:false,
|
|
|
+ referenceCountShow:false,
|
|
|
+ statusSourceList:[],
|
|
|
+ statusEdbClassifyList:[],
|
|
|
+ searchParams:{
|
|
|
+ Source:'',
|
|
|
+ Status:'',
|
|
|
+ Frequency:'',
|
|
|
+ SysUserId:'',
|
|
|
+ ClassifyId:'',
|
|
|
+ SortType:'',//排序类型
|
|
|
+ SortParam:'',//排序字段
|
|
|
+ Keyword:"",
|
|
|
+ PageSize:10,
|
|
|
+ CurrentIndex:1
|
|
|
+ },
|
|
|
+ SysUserIdArr:[],
|
|
|
+ stopUserIdRequest:false, //阻止watch中的请求
|
|
|
+ ClassifyIdArr:[],
|
|
|
+ stopClassifyIdRequest:false, //阻止watch中的请求
|
|
|
+ FrequencyArr:[],
|
|
|
+ stopFrequencyArrRequest:false, //阻止watch中的请求
|
|
|
+ statusTableData:[],
|
|
|
+ statusTableDataIds:[],
|
|
|
+ statusDataTotal:0,
|
|
|
+ statusEdbRelationDetailList:[],
|
|
|
+ statusDataSelectionItem:{
|
|
|
+ isIndeterminate:false,
|
|
|
+ isCheckAll:false,
|
|
|
+ selectionReactCancel:false,
|
|
|
+ isSelectAll:false,//为true时,selectList是剔除的指标,为false时selectList是已选择的指标
|
|
|
+ //已选择/已剔除的指标id
|
|
|
+ selectList:[],//监听table的select-all select
|
|
|
+ }
|
|
|
};
|
|
|
},
|
|
|
+ watch:{
|
|
|
+ SysUserIdArr(value){
|
|
|
+ if(value&&value.length>0){
|
|
|
+ this.searchParams.SysUserId=value.join(',')
|
|
|
+ }else{
|
|
|
+ this.searchParams.SysUserId=''
|
|
|
+ }
|
|
|
+ if(!this.stopUserIdRequest){
|
|
|
+ this.searchList()
|
|
|
+ }else{
|
|
|
+ this.stopUserIdRequest=false
|
|
|
+ }
|
|
|
+
|
|
|
+ },
|
|
|
+ ClassifyIdArr(value){
|
|
|
+ if(value&&value.length>0){
|
|
|
+ this.searchParams.ClassifyId=value.join(',')
|
|
|
+ }else{
|
|
|
+ this.searchParams.ClassifyId=''
|
|
|
+ }
|
|
|
+ if(!this.stopClassifyIdRequest){
|
|
|
+ this.searchList()
|
|
|
+ }else{
|
|
|
+ this.stopClassifyIdRequest=false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ FrequencyArr(value){
|
|
|
+ if(value&&value.length>0){
|
|
|
+ this.searchParams.Frequency=value.join(',')
|
|
|
+ }else{
|
|
|
+ this.searchParams.Frequency=''
|
|
|
+ }
|
|
|
+ if(!this.stopFrequencyArrRequest){
|
|
|
+ this.searchList()
|
|
|
+ }else{
|
|
|
+ this.stopFrequencyArrRequest=false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ 'searchParams.Source':{
|
|
|
+ handler:function (value) {
|
|
|
+ if(!value) return
|
|
|
+ this.searchParams.Status=''
|
|
|
+ // this.searchParams.Frequency=''
|
|
|
+ // this.searchParams.ClassifyId=''
|
|
|
+ // this.searchParams.SysUserId=''
|
|
|
+ this.FrequencyArr=[]
|
|
|
+ this.stopFrequencyArrRequest=true
|
|
|
+ this.ClassifyIdArr=[]
|
|
|
+ this.stopClassifyIdRequest=true
|
|
|
+ this.SysUserIdArr=[]
|
|
|
+ this.stopUserIdRequest=true
|
|
|
+ this.searchParams.SortType=''
|
|
|
+ this.searchParams.SortParam=''
|
|
|
+ this.searchParams.Keyword=''
|
|
|
+ this.getStatusClassifyList()
|
|
|
+ if(this.settingTab=='status') this.searchList()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
methods: {
|
|
|
+ checkPer(it){
|
|
|
+ if(it.value == 'status'){
|
|
|
+ // 同 设置刷新状态的权限按钮 控制整个刷新状态设置tab
|
|
|
+ return this.permissionBtn.isShowBtn('sysDepartPermission','refresh_state')
|
|
|
+ }
|
|
|
+ return true
|
|
|
+ },
|
|
|
+ changeTab(e){
|
|
|
+ this.settingTab=e||'time'
|
|
|
+ if(this.settingTab=='time'){
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ this.$refs.edbDataRef && this.adjustSelection()
|
|
|
+ })
|
|
|
+ }else{
|
|
|
+ if(!(this.statusTableData && this.statusTableData.length>0)){
|
|
|
+ this.searchList()
|
|
|
+ }else{
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ this.$refs.statusTableRef && this.adjustStatusSelection()
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
//展示刷新时间弹窗
|
|
|
showDialog(isDefault){
|
|
|
this.isDefault = isDefault
|
|
@@ -368,6 +641,10 @@ export default {
|
|
|
dataRefreshInterface.getDataSourceList().then(res=>{
|
|
|
if(res.Ret!==200) return
|
|
|
this.SourceList = res.Data||[]
|
|
|
+ this.statusSourceList=this.SourceList.filter(it => [2,34].includes(it.Source)).concat([
|
|
|
+ {Source:-1,SourceName:"计算指标"}
|
|
|
+ ])
|
|
|
+ this.searchParams.Source = this.statusSourceList[0]?this.statusSourceList[0].Source:''
|
|
|
})
|
|
|
},
|
|
|
//一级数据源改变时,二级数据源和筛选项也重新赋值
|
|
@@ -498,7 +775,7 @@ export default {
|
|
|
let row = this.tableData.find(da => da.EdbInfoId==it)
|
|
|
if(row){
|
|
|
setTimeout(()=>{
|
|
|
- this.$refs.edbDataRef.toggleRowSelection(row,true)
|
|
|
+ this.$refs.edbDataRef && this.$refs.edbDataRef.toggleRowSelection(row,true)
|
|
|
},10)
|
|
|
}
|
|
|
})
|
|
@@ -509,7 +786,7 @@ export default {
|
|
|
let row = this.tableData.find(da => da.EdbInfoId==it)
|
|
|
if(row){
|
|
|
setTimeout(()=>{
|
|
|
- this.$refs.edbDataRef.toggleRowSelection(row,false)
|
|
|
+ this.$refs.edbDataRef && this.$refs.edbDataRef.toggleRowSelection(row,false)
|
|
|
},50)
|
|
|
}
|
|
|
})
|
|
@@ -691,7 +968,245 @@ export default {
|
|
|
if(e==='默认刷新时间') return this.$t('SystemManage.DataRefresh.default_time')
|
|
|
if(e==='设置刷新时间') return this.$t('SystemManage.DataRefresh.set_time')
|
|
|
return e
|
|
|
- }
|
|
|
+ },
|
|
|
+ // -----------------------------刷新状态设置
|
|
|
+ //获取分类列表
|
|
|
+ async getStatusClassifyList(){
|
|
|
+ if(!this.searchParams.Source) return
|
|
|
+ const res = await dataRefreshInterface.getClassifyList({
|
|
|
+ Source:Number(this.searchParams.Source)
|
|
|
+ })
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ this.statusEdbClassifyList = res.Data||[]
|
|
|
+ },
|
|
|
+ getStatusDataList(type){
|
|
|
+ dataRefreshInterface.getRelationEdbDataList(this.searchParams).then(res=>{
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ this.statusTableData=res.Data.List || []
|
|
|
+ this.statusDataTotal=res.Data.Paging.Totals || this.statusTableData.length
|
|
|
+ if(this.statusDataTotal>0){
|
|
|
+ this.statusTableDataIds = this.statusTableData.map(it => it.EdbInfoId)
|
|
|
+ }else{
|
|
|
+ this.statusTableDataIds = []
|
|
|
+ }
|
|
|
+ if(type==='search'){
|
|
|
+ //如果是表格筛选项改变导致重新请求数据
|
|
|
+ //数据获取完成后,清空所选
|
|
|
+ this.statusDataSelectionItem.selectList = []
|
|
|
+ this.statusListCheckAllChange(false)
|
|
|
+ }else{
|
|
|
+ //若不是,数据获取完成后,查询列表全选的值
|
|
|
+ //若当页有数据在selectList内,则勾选/剔除
|
|
|
+ this.adjustStatusSelection()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ handleStatusListPageNoChange(page){
|
|
|
+ this.searchParams.CurrentIndex = page
|
|
|
+ this.getStatusDataList()
|
|
|
+ },
|
|
|
+ // 列表
|
|
|
+ searchList(){
|
|
|
+ this.searchParams.CurrentIndex=1
|
|
|
+ this.getStatusDataList('search')
|
|
|
+ },
|
|
|
+ handleStatusTableSortChange({prop,order}){
|
|
|
+ if(order){
|
|
|
+ this.searchParams.SortParam = prop
|
|
|
+ this.searchParams.SortType = order==='ascending'?'asc':'desc'
|
|
|
+ }else{
|
|
|
+ this.searchParams.SortParam = ''
|
|
|
+ this.searchParams.SortType = ''
|
|
|
+ }
|
|
|
+ this.searchParams.CurrentIndex=1
|
|
|
+ this.getStatusDataList()
|
|
|
+ },
|
|
|
+ //勾选/取消勾选表格项-刷新状态设置
|
|
|
+ adjustStatusSelection(){
|
|
|
+ this.statusDataSelectionItem.selectionReactCancel=true
|
|
|
+ if(!this.statusDataSelectionItem.isSelectAll){
|
|
|
+ this.statusDataSelectionItem.selectList.map(it =>{
|
|
|
+ let row = this.statusTableData.find(da => da.EdbInfoId==it)
|
|
|
+ if(row){
|
|
|
+ setTimeout(()=>{
|
|
|
+ this.$refs.statusTableRef && this.$refs.statusTableRef.toggleRowSelection(row,true)
|
|
|
+ },10)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }else{
|
|
|
+ this.$refs.statusTableRef && this.$refs.statusTableRef.clearSelection()
|
|
|
+ this.$refs.statusTableRef &&this.$refs.statusTableRef.toggleAllSelection()
|
|
|
+ this.statusDataSelectionItem.selectList.map(it =>{
|
|
|
+ let row = this.statusTableData.find(da => da.EdbInfoId==it)
|
|
|
+ if(row){
|
|
|
+ setTimeout(()=>{
|
|
|
+ this.$refs.statusTableRef && this.$refs.statusTableRef.toggleRowSelection(row,false)
|
|
|
+ },50)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ setTimeout(()=>{
|
|
|
+ this.statusDataSelectionItem.selectionReactCancel=false
|
|
|
+ },50)
|
|
|
+ },
|
|
|
+ //列表全选改变-刷新状态设置
|
|
|
+ statusListCheckAllChange(value){
|
|
|
+ this.statusDataSelectionItem.selectList = []
|
|
|
+ this.statusDataSelectionItem.isSelectAll = value
|
|
|
+ this.$refs.statusTableRef && this.$refs.statusTableRef.clearSelection()
|
|
|
+ if(value){
|
|
|
+ this.$refs.statusTableRef && this.$refs.statusTableRef.toggleAllSelection()
|
|
|
+ }
|
|
|
+ },
|
|
|
+ statusSelectionChange(selection){
|
|
|
+ if(this.statusDataSelectionItem.selectionReactCancel) return
|
|
|
+ // selectAllHandle的触发在selectionChange后面,将selectionChange的逻辑延迟一下
|
|
|
+ setTimeout(()=>{
|
|
|
+ // 去重
|
|
|
+ let duplicateArr = Array.from(new Set(this.statusDataSelectionItem.selectList))
|
|
|
+ //isSelectAll为true时,selectList表示需要剔除的项
|
|
|
+ //isSelectAll为false时,selectList表示需要勾选的项
|
|
|
+ //全选
|
|
|
+ if((duplicateArr.length == this.statusDataTotal && (!this.statusDataSelectionItem.isSelectAll))
|
|
|
+ || (duplicateArr.length == 0 && this.statusDataSelectionItem.isSelectAll)){
|
|
|
+ this.statusDataSelectionItem.isCheckAll = true
|
|
|
+ this.statusDataSelectionItem.isIndeterminate=false
|
|
|
+ //全不选
|
|
|
+ }else if((duplicateArr.length == 0 && (!this.statusDataSelectionItem.isSelectAll))
|
|
|
+ || (duplicateArr.length == this.statusDataTotal && this.statusDataSelectionItem.isSelectAll)){
|
|
|
+ this.statusDataSelectionItem.isCheckAll = false
|
|
|
+ this.statusDataSelectionItem.isIndeterminate=false
|
|
|
+ //半选
|
|
|
+ }else{
|
|
|
+ this.statusDataSelectionItem.isCheckAll = false
|
|
|
+ this.statusDataSelectionItem.isIndeterminate=true
|
|
|
+ }
|
|
|
+ },1)
|
|
|
+ },
|
|
|
+ statusSelectHandle(selection,row){
|
|
|
+ if(this.statusDataSelectionItem.selectionReactCancel) return
|
|
|
+ let check = false;
|
|
|
+ if(selection.some(it => it.EdbInfoId == row.EdbInfoId)){
|
|
|
+ // 勾选
|
|
|
+ if(this.statusDataSelectionItem.isSelectAll){
|
|
|
+ check=false
|
|
|
+ }else{
|
|
|
+ check=true
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ // 取消勾选
|
|
|
+ if(this.statusDataSelectionItem.isSelectAll){
|
|
|
+ check=true
|
|
|
+ }else{
|
|
|
+ check=false
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(check){
|
|
|
+ this.statusDataSelectionItem.selectList.push(row.EdbInfoId)
|
|
|
+ }else{
|
|
|
+ this.statusDataSelectionItem.selectList=this.statusDataSelectionItem.selectList.filter(it => it!=row.EdbInfoId)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ statusSelectAllHandle(selection){
|
|
|
+ if(this.statusDataSelectionItem.selectionReactCancel) return
|
|
|
+ let check = false;
|
|
|
+ if(selection && selection.length>0){
|
|
|
+ // 全选
|
|
|
+ if(this.statusDataSelectionItem.isSelectAll){
|
|
|
+ check=false
|
|
|
+ }else{
|
|
|
+ check=true
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ // 全不选
|
|
|
+ if(this.statusDataSelectionItem.isSelectAll){
|
|
|
+ check=true
|
|
|
+ }else{
|
|
|
+ check=false
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(check){
|
|
|
+ this.statusDataSelectionItem.selectList = [...this.statusDataSelectionItem.selectList,...this.statusTableDataIds]
|
|
|
+ }else{
|
|
|
+ this.statusDataSelectionItem.selectList = this.statusDataSelectionItem.selectList.filter(it => !this.statusTableDataIds.includes(it))
|
|
|
+ }
|
|
|
+ },
|
|
|
+ openReferenceCountDia(row){
|
|
|
+ if(row.RelationNum==0) return
|
|
|
+ dataRefreshInterface.getRelationEdbDetail({EdbInfoId:row.EdbInfoId,CurrentIndex:1,PageSize:9999999}).then(res=>{
|
|
|
+ if(res.Ret == 200){
|
|
|
+ this.statusEdbRelationDetailList=res.Data.List || []
|
|
|
+ this.referenceCountShow=true
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ async enableToggle(row){
|
|
|
+ let isRequest=true
|
|
|
+ if(!row.IsStop){
|
|
|
+ isRequest=false
|
|
|
+ await this.$confirm(this.$t('SystemManage.DataRefresh.disable_indicator_prompt'),this.$t('Confirm.prompt'),{
|
|
|
+ type:"warning"
|
|
|
+ }).then(res=>{
|
|
|
+ isRequest=true
|
|
|
+ }).catch(()=>{})
|
|
|
+ }
|
|
|
+ if(isRequest){
|
|
|
+ dataBaseInterface.edbRefreshStatusSet({EdbInfoId:row.EdbInfoId,ModifyStatus:row.IsStop==1?'启用':'暂停'}).then(res=>{
|
|
|
+ if(res.Ret == 200){
|
|
|
+ row.IsStop=1-row.IsStop
|
|
|
+ this.$message.success(this.$t('MsgPrompt.operate_success_msg'))
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ async setEdbsRefreshStatus(state){
|
|
|
+ let isRequest=true
|
|
|
+ if(state=='暂停'){
|
|
|
+ isRequest=false
|
|
|
+ await this.$confirm(this.$t('SystemManage.DataRefresh.disable_indicator_prompt'),this.$t('Confirm.prompt'),{
|
|
|
+ type:"warning"
|
|
|
+ }).then(res=>{
|
|
|
+ isRequest=true
|
|
|
+ }).catch(()=>{})
|
|
|
+ }
|
|
|
+ if(!isRequest) return
|
|
|
+
|
|
|
+ let params={
|
|
|
+ Source:Number(this.searchParams.Source),
|
|
|
+ ClassifyId:this.searchParams.ClassifyId,
|
|
|
+ SysUserId:this.searchParams.SysUserId,
|
|
|
+ Frequency:this.searchParams.Frequency,
|
|
|
+ Keyword:this.searchParams.Keyword,
|
|
|
+ Status:this.searchParams.Status,
|
|
|
+ IsSelectAll:this.statusDataSelectionItem.isSelectAll,
|
|
|
+ EdbSelectIdList:this.statusDataSelectionItem.selectList,
|
|
|
+ ModifyStatus:state
|
|
|
+ }
|
|
|
+
|
|
|
+ dataRefreshInterface.setRelationEdbsRefreshStatus(params).then(res=>{
|
|
|
+ if(res.Ret == 200){
|
|
|
+ this.$message.success(this.$t('MsgPrompt.operate_success_msg'))
|
|
|
+ this.getStatusDataList()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ openDefaultRefreshStatusDia(){
|
|
|
+ dataRefreshInterface.getEdbStopRefreshRule({ConfKey:'EdbStopRefreshRule'}).then(res=>{
|
|
|
+ if(res.Ret == 200){
|
|
|
+ this.settingRuleForm=res.Data.ConfVal?JSON.parse(res.Data.ConfVal):{}
|
|
|
+ this.setDefaultRefreshStatusShow=true
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ setDefaultRefreshRule(rule){
|
|
|
+ let ruleText = rule?JSON.stringify({...rule,IsOpen:rule.IsOpen?1:0}):''
|
|
|
+ dataRefreshInterface.setEdbStopRefreshRule({ConfKey:'EdbStopRefreshRule',ConfVal:ruleText}).then(res=>{
|
|
|
+ if(res.Ret == 200){
|
|
|
+ this.$message.success(this.$t('MsgPrompt.operate_success_msg'))
|
|
|
+ this.setDefaultRefreshStatusShow=false
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
},
|
|
|
mounted(){
|
|
|
this.getSourceList()
|
|
@@ -703,17 +1218,46 @@ export default {
|
|
|
<style scoped lang="scss">
|
|
|
.data-refresh-setting-wrap{
|
|
|
min-height: calc(100vh - 120px);
|
|
|
+ background-color: #fff;
|
|
|
+ border:1px solid #C8CDD9;
|
|
|
+ border-radius: 4px;
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
+ .top-top{
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ border-bottom:solid 1px #E7E7E7 ;
|
|
|
+ padding-right: 30px;
|
|
|
+ height: 62px;
|
|
|
+ .tab-zone{
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ flex: 1;
|
|
|
+ height: 100%;
|
|
|
+ .tab-item{
|
|
|
+ cursor: pointer;
|
|
|
+ color: #666666;
|
|
|
+ padding: 0 16px;
|
|
|
+ height: 100%;
|
|
|
+ font-size: 16px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ box-sizing: border-box;
|
|
|
+ border-bottom: solid 2px #ffffff;
|
|
|
+ }
|
|
|
+ .tab-item.active{
|
|
|
+ color: #0052D9;
|
|
|
+ border-bottom: solid 2px #0052D9;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
.top-box,.table-box{
|
|
|
box-sizing: border-box;
|
|
|
padding:20px;
|
|
|
- background-color: #fff;
|
|
|
- border:1px solid #C8CDD9;
|
|
|
- border-radius: 4px;
|
|
|
}
|
|
|
.top-box{
|
|
|
- margin-bottom: 20px;
|
|
|
+ // margin-bottom: 20px;
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
.el-input{
|
|
@@ -773,5 +1317,60 @@ export default {
|
|
|
padding: 25px 0;
|
|
|
}
|
|
|
}
|
|
|
+ // 刷新状态设置
|
|
|
+ .refresh-status-container{
|
|
|
+ padding: 20px 30px;
|
|
|
+ .refresh-status-search{
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-start;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin-left: -15px;
|
|
|
+ margin-bottom: 12px;
|
|
|
+ .select-source-box{
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ margin-left:15px;
|
|
|
+ white-space: nowrap;
|
|
|
+ margin-bottom: 8px;
|
|
|
+ .el-select{
|
|
|
+ margin-left:15px;
|
|
|
+ margin-bottom: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .el-select{
|
|
|
+ margin-left:15px;
|
|
|
+ margin-bottom: 8px;
|
|
|
+ }
|
|
|
+ .refresh-status-search-left{
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ }
|
|
|
+ .select-item-small{
|
|
|
+ max-width: 140px;
|
|
|
+ margin-bottom: 8px;
|
|
|
+ margin-left:15px;
|
|
|
+ }
|
|
|
+ .selection-box{
|
|
|
+ margin-bottom: 8px;
|
|
|
+ margin-left:15px;
|
|
|
+ white-space: nowrap;
|
|
|
+ span{
|
|
|
+ margin-left: 12px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .el-table{
|
|
|
+ margin:12px 0 20px;
|
|
|
+ }
|
|
|
+ .table-text-button{
|
|
|
+ cursor: pointer;
|
|
|
+ color: #0052D9;
|
|
|
+ padding: 0 4px;
|
|
|
+ }
|
|
|
+ .el-pagination{
|
|
|
+ text-align: right;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|