From 9597b1df912c1ca4401a74970d9472e268b3a9c2 Mon Sep 17 00:00:00 2001 From: schangxiang@126.com <schangxiang@126.com> Date: 周六, 07 12月 2024 15:12:59 +0800 Subject: [PATCH] 33 --- LA24030_LuLiPackageLine_Web/src/views/main/WmsOrder/manualFeed/index.vue | 39 ++++++++++++++++++++++++++++++--------- 1 files changed, 30 insertions(+), 9 deletions(-) diff --git a/LA24030_LuLiPackageLine_Web/src/views/main/WmsOrder/manualFeed/index.vue b/LA24030_LuLiPackageLine_Web/src/views/main/WmsOrder/manualFeed/index.vue index c965bc2..f4984ff 100644 --- a/LA24030_LuLiPackageLine_Web/src/views/main/WmsOrder/manualFeed/index.vue +++ b/LA24030_LuLiPackageLine_Web/src/views/main/WmsOrder/manualFeed/index.vue @@ -3,7 +3,7 @@ <el-card class="full-table" shadow="hover" style="margin-top: 5px"> <el-form :model="queryParams" @submit.native.prevent ref="queryForm" labelWidth="100"> <el-row> - <el-col :xs="24" :sm="12" :md="12" :lg="10" :xl="4" class="mb10"> + <el-col :xs="24" :sm="24" :md="24" :lg="10" :xl="10" class="mb10"> <el-form-item label="閮ㄤ欢鏉$爜" size="large"> <el-input size="large" @@ -13,15 +13,15 @@ placeholder="璇锋壂閮ㄤ欢鏉$爜" @keyup.enter.prevent="handleEnter" @confirm.enter.prevent="handleEnter" - /> + /> </el-form-item> </el-col> - <el-col :xs="24" :sm="12" :md="12" :lg="6" :xl="6" class="mb10"> + <el-col :xs="24" :sm="24" :md="24" :lg="6" :xl="6" class="mb10"> <el-form-item> <el-button-group style="display: flex; align-items: center"> <el-button size="large" type="primary" icon="ele-Search" @click="handleQuery"> 鏌ヨ </el-button> - <el-button size="large" icon="ele-Refresh" @click="() => (queryParams = {})"> 閲嶇疆 </el-button> + <el-button size="large" icon="ele-Refresh" @click="reset"> 閲嶇疆 </el-button> <!-- <el-button icon="ele-ZoomIn" @click="changeAdvanceQueryUI" v-if="!showAdvanceQueryUI" style="margin-left:5px;"> 楂樼骇鏌ヨ </el-button> <el-button icon="ele-ZoomOut" @click="changeAdvanceQueryUI" v-if="showAdvanceQueryUI" style="margin-left:5px;"> 闅愯棌 </el-button> --> @@ -42,7 +42,7 @@ p-id="11360" ></path> </svg> - <p class="okText">鑾峰彇閮ㄤ欢淇℃伅鎴愬姛锛�</p> + <p class="okText">琛ヤ欢璇锋眰鎴愬姛锛�</p> </div> <div class="" v-show="isSuccess && isSuccess != '鎴愬姛'"> <svg t="1732842594517" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4303" width="100" height="100"> @@ -52,11 +52,14 @@ p-id="4304" ></path> </svg> - <p class="okText">{{ isSuccess }}</p> + <p class="no_okText">{{ isSuccess }}</p> </div> </div> <ul> - + <li> + <span class="text_left">鍖呰缂栧彿:</span> + <span class="text_rt">{{ tableData.packageCode }}</span> + </li> <li> <span class="text_left">閮ㄤ欢鏉$爜:</span> <span class="text_rt">{{ tableData.upi }}</span> @@ -175,7 +178,7 @@ import { auth } from '/@/utils/authFunction'; import { getDictDataItem as di, getDictDataList as dl } from '/@/utils/dict-utils'; import { formatDate } from '/@/utils/formatTime'; -import { ShortageList } from '/@/api/main/ReportCenter/wmsStockQuan'; +import { ShortageList } from '/@/api/main/ReportCenter/wmsStockQuan_new'; const showAdvanceQueryUI = ref(false); const loading = ref(false); @@ -232,6 +235,11 @@ queryParams.value.upi = ''; handleResponse(res); }; +const reset = async () => { + queryParams.value={}; + tableData.value ={}; + isSuccess.value =''; +}; function handleResponse(res: any) { tableData.value = res.data.result ?? {}; @@ -272,6 +280,7 @@ margin: 0; padding: 0; li { + margin-top: 20px; display: block; line-height: 30px; text-align: left; @@ -284,16 +293,28 @@ } .text_left { font-weight: 700; + font-size: 40px; /* 璋冩暣瀛椾綋澶у皬 */ +} +.text_rt { + font-weight: 700; + color: #00B2EE; /* 璁剧疆鍥炬爣棰滆壊 */ + font-size: 40px; /* 璋冩暣瀛椾綋澶у皬 */ } .my-icon { font-size: 36px; /* 璋冩暣瀛椾綋澶у皬 */ color: #00ff11; /* 璁剧疆鍥炬爣棰滆壊 */ } .titleTip { + font-weight: 700; text-align: center; - font-size: 36px; /* 璋冩暣瀛椾綋澶у皬 */ + font-size: 60px; /* 璋冩暣瀛椾綋澶у皬 */ .okText { margin-bottom: 20px; + color: #52C41A; /* 璁剧疆鍥炬爣棰滆壊 */ + } + .no_okText { + margin-bottom: 20px; + color: #E84335; /* 璁剧疆鍥炬爣棰滆壊 */ } } </style> -- Gitblit v1.9.3