| | |
| | | <template> |
| | | <div class="app-container"> |
| | | <div style="display: flex;flex-direction: row;min-width: 158px;max-width: 158px;margin-bottom: 5px;border-radius: 1px"> |
| | | <div @click="allData(0)" class="tab" :class="{tabActive: 0 === selected, tabInactive: 0 !== selected}">全部</div> |
| | | <div @click="provinceData(1)" class="tab" :class="{tabActive: 1 === selected, tabInactive: 1 !== selected}">省厅考核</div> |
| | | <div style="display: flex;flex-direction: row;min-width: 158px;max-width: 158px;margin-bottom: 5px;border-radius: 1px; user-select: none"> |
| | | <div @click="clickTab(0)" class="tab" :class="{tabActive: 0 === queryParams.dataType, tabInactive: 0 !== queryParams.dataType}">全部</div> |
| | | <div @click="clickTab(1)" class="tab" :class="{tabActive: 1 === queryParams.dataType, tabInactive: 1 !== queryParams.dataType}">省厅考核</div> |
| | | </div> |
| | | <el-card class="box-card" v-show="index !== 'image_resource_security'"> |
| | | <el-row style="display: flex; flex-direction: row; align-items: center" justify="space-between"> |
| | |
| | | }, |
| | | data() { |
| | | return { |
| | | selected: 0, |
| | | // 导入参数 |
| | | upload: { |
| | | // 是否显示弹出层 |
| | |
| | | pageSize: 10, |
| | | keyword: '', |
| | | timeRange: [], |
| | | dataType: 0, |
| | | }, |
| | | // 表单参数 |
| | | form: {}, |
| | |
| | | this.getList(); |
| | | }, |
| | | methods: { |
| | | allData(active) { |
| | | this.selected = active |
| | | }, |
| | | provinceData(active) { |
| | | this.selected = active |
| | | clickTab(active) { |
| | | this.queryParams.dataType = active |
| | | this.getList() |
| | | }, |
| | | showListPD(item) { |
| | | if (!this.showList) { |