From 99c9c141b63a65d7739a071cc7d6ba72aa91951c Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期二, 03 九月 2024 22:41:11 +0800 Subject: [PATCH] 视频优化 --- 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 df57a6b..153f9ae 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" :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" /> @@ -150,27 +151,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