| | |
| | | <div class="app-container"> |
| | | <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"> |
| | | <div v-for="card in cardList" style="display: flex;flex-direction: row; margin-right: 50px" :key="card.label"> |
| | | <div style="margin-right: 20px;font-size: 18px">{{ruleName}}</div> |
| | | <div v-if="cardList && cardList.length > 0" v-for="card in cardList" style="display: flex;flex-direction: row; margin-right: 50px" :key="card.label"> |
| | | <div> |
| | | <div class="icon-container"> |
| | | <i :class="card.icon"></i> |
| | |
| | | </el-row> |
| | | </el-card> |
| | | |
| | | <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"> |
| | | <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch"> |
| | | <el-form-item label="关键词" prop="bayonetNumber"> |
| | | <el-input v-model="queryParams.keyword" placeholder="关键词搜索" clearable |
| | | @keyup.enter.native="handleQuery" /> |
| | |
| | | import { getToken } from "@/utils/auth"; |
| | | export default { |
| | | name: "Platform", |
| | | // watch: { |
| | | // tableData: { |
| | | // immediate: true, |
| | | // deep: true, |
| | | // handler(newVal) { |
| | | // if(newVal && newVal.list) { |
| | | // this.list = newVal.detail; |
| | | // } |
| | | // } |
| | | // } |
| | | // }, |
| | | // computed: { |
| | | // startTime() { |
| | | // var date = new Date(); |
| | | // var s1 = date.getFullYear() + "-" + (date.getMonth() + 1) + "-" + (date.getDate()-1); |
| | | // return s1; |
| | | // } |
| | | // }, |
| | | computed: { |
| | | ruleName() { |
| | | return this.$route.query.ruleName |
| | | } |
| | | }, |
| | | data() { |
| | | return { |
| | | list: [], |
| | | // 导入参数 |
| | | upload: { |
| | | // 是否显示弹出层 |