From 8e2a3bde018d84c7316d78939b022a93841ff5b9 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期三, 04 九月 2024 01:35:20 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/views/system/data-manage/data-detail/index.vue | 29 ++++++++--------------------- 1 files changed, 8 insertions(+), 21 deletions(-) diff --git a/src/views/system/data-manage/data-detail/index.vue b/src/views/system/data-manage/data-detail/index.vue index 749338f..002bdde 100644 --- a/src/views/system/data-manage/data-detail/index.vue +++ b/src/views/system/data-manage/data-detail/index.vue @@ -2,7 +2,8 @@ <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;align-items: center" :key="card.label"> <div> <div class="icon-container"> <i :class="card.icon"></i> @@ -25,7 +26,7 @@ </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" /> @@ -153,27 +154,13 @@ 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: { // 鏄惁鏄剧ず寮瑰嚭灞� -- Gitblit v1.8.0