From 9ff66017debadfc89bc0c1b796684a4d1dbe2bc3 Mon Sep 17 00:00:00 2001 From: fangyuan <527392886@qq.com> Date: 星期五, 16 十二月 2022 10:00:02 +0800 Subject: [PATCH] 已上报到市批量操作按钮隐藏 --- src/views/operate/log/index.vue | 69 +++++++++++++++++++--------------- 1 files changed, 39 insertions(+), 30 deletions(-) diff --git a/src/views/operate/log/index.vue b/src/views/operate/log/index.vue index adb83e7..b9de74f 100644 --- a/src/views/operate/log/index.vue +++ b/src/views/operate/log/index.vue @@ -3,35 +3,42 @@ <header> <div class="header-nav"> <span class="nav-left">鏁版嵁绛涢��</span> - <span class="nav-right">楂樼骇鎼滅储</span> + <!-- <span class="nav-right">楂樼骇鎼滅储</span> --> </div> <div class="header-content"> <div class="search"> <span>杈撳叆鏌ヨ:</span> - <el-input placeholder="鍐呭淇℃伅" v-model="context"></el-input> + + <div class="option"> + <el-input placeholder="鍐呭淇℃伅" v-model="context"></el-input> + </div> </div> <div class="message-status"> <span>鎿嶄綔绫诲瀷:</span> - <el-select v-model="operationType"> - <el-option - v-for="item in operationTypeList" - :key="item.id" - :label="item.operationType" - :value="item.operationType" - > - </el-option> - </el-select> + <div class="option"> + <el-select v-model="operationType"> + <el-option + v-for="item in operationTypeList" + :key="item.id" + :label="item.operationType" + :value="item.operationType" + > + </el-option> + </el-select> + </div> </div> <div class="message-kind"> <span>鏃堕棿鑼冨洿:</span> - <el-date-picker - v-model="mytime" - type="daterange" - range-separator="-" - start-placeholder="寮�濮嬫棩鏈�" - end-placeholder="缁撴潫鏃ユ湡" - > - </el-date-picker> + <div class="option"> + <el-date-picker + v-model="mytime" + type="daterange" + range-separator="-" + start-placeholder="寮�濮嬫棩鏈�" + end-placeholder="缁撴潫鏃ユ湡" + > + </el-date-picker> + </div> </div> <div class="find"> <el-button @@ -147,7 +154,7 @@ </div> </template> <script> -import {downloadFile, getNowDate} from "@/utils/helper"; +import { downloadFile, getNowDate } from "@/utils/helper"; import helper from "@/utils/mydate"; import { parseTime } from "@/utils/index"; import { createNamespacedHelpers } from "vuex"; @@ -342,8 +349,7 @@ } }); }) - .catch((err) => { - }); + .catch((err) => {}); }, // 琛ㄦ牸鐩戝惉 tableChange(list) { @@ -405,8 +411,7 @@ .then((_) => { done(); }) - .catch((err) => { - }); + .catch((err) => {}); }, // 鑷畾涔夊叧闂脊绐� closeDialog({ flag, index }) { @@ -415,8 +420,7 @@ } }, // - timechange(data) { - }, + timechange(data) {}, }, }; </script> @@ -442,16 +446,19 @@ padding: 0 40px; display: flex; line-height: 100px; - justify-content: space-between; + // justify-content: space-between; align-items: center; - + span { + min-width: 120px; + padding-left: 15px; + } .search, .message-status, .message-kind { display: flex; justify-content: flex-start; align-items: center; - flex: 1; + // flex: 1; .el-input { flex: 1; color: #1d3f57; @@ -471,7 +478,9 @@ background-color: #09152f; } } - + .find { + margin-left: 15px; + } .findBtn { line-height: 100px; margin-left: 15px; -- Gitblit v1.8.0