From 29d394bbe7750cc18278341db73e02f8c5b2dd88 Mon Sep 17 00:00:00 2001 From: hdy <1105738590@qq.com> Date: 星期二, 23 一月 2024 09:24:34 +0800 Subject: [PATCH] 修改 --- jcdm-ui/src/views/main/kb/engineCheck/index.vue | 54 ++++++++++++++++++++++++++++++------------------------ 1 files changed, 30 insertions(+), 24 deletions(-) diff --git a/jcdm-ui/src/views/main/kb/engineCheck/index.vue b/jcdm-ui/src/views/main/kb/engineCheck/index.vue index 4346a16..858494b 100644 --- a/jcdm-ui/src/views/main/kb/engineCheck/index.vue +++ b/jcdm-ui/src/views/main/kb/engineCheck/index.vue @@ -1,6 +1,6 @@ <template> <div class="app-container"> - <el-card style="height: 70px;margin-bottom: 10px" class="box-card" > + <el-card class="box-card" > <template> <div class="container"> <el-row type="flex" justify="center" style="text-align: center" > @@ -11,50 +11,41 @@ </div> </template> </el-card> - <el-row :gutter="5" style="margin-top: 10px"> - <el-col :span="10" > - <el-card class="bottom-card"> - <el-descriptions :column="1" > - <el-descriptions-item> + <el-row :gutter="0" > + + <el-col :span="14"> + <el-card class="box-card" > <el-form ref="form" :model="form" label-width="200px" style="height: 60px;margin-top: 20px" > <el-form-item prop="engineNo" > - <span slot="label" style="font-size:45px;color:black"><strong>鍙戝姩鏈哄彿</strong></span> + <span slot="label" style="font-size:40px;color:black"><strong>鍙戝姩鏈哄彿</strong></span> <el-input style="font-size:30px" v-model="form.engineNo" placeholder="璇疯緭鍏ュ彂鍔ㄦ満鍙�" clearable @keyup.enter.native="EngineNohandleChange" > <el-button slot="append" plain type="info" @click="EngineNohandleChange(form.engineNo)" icon="el-icon-search"></el-button> </el-input> </el-form-item> </el-form> - </el-descriptions-item> - <el-descriptions-item> <el-form ref="form" :model="form" label-width="200px" style="height: 60px;margin-top: 20px" > <el-form-item prop="productType" > - <span slot="label" style="font-size:45px;color:black"><strong>鏈哄瀷</strong></span> + <span slot="label" style="font-size:40px;color:black"><strong>鏈哄瀷</strong></span> <el-input disabled style="font-size:30px" value="form.productType" v-model="form.productType" placeholder="" /> </el-form-item> </el-form> - </el-descriptions-item> - <el-descriptions-item> <el-form ref="form" :model="form" label-width="200px" style="height: 60px;margin-top: 20px" > <el-form-item prop="orderNo" > - <span slot="label" style="font-size:45px;color:black"><strong>宸ュ崟缂栧彿</strong></span> + <span slot="label" style="font-size:40px;color:black"><strong>宸ュ崟缂栧彿</strong></span> <el-input disabled style="font-size:30px" v-model="form.orderNo" placeholder="" /> </el-form-item> </el-form> - </el-descriptions-item> - <el-descriptions-item> <el-form ref="form" :model="form" label-width="200px" style="height: 60px;margin-top: 20px" > <el-form-item prop="currentWorkstation" > - <span slot="label" style="font-size:45px;color:black"><strong>璐ㄩ噺鐘舵��</strong></span> + <span slot="label" style="font-size:40px;color:black"><strong>璐ㄩ噺鐘舵��</strong></span> <el-input disabled style="font-size:30px" v-model:value="form.add" placeholder="" /> </el-form-item> </el-form> - </el-descriptions-item> - </el-descriptions> <el-divider></el-divider> <el-row :gutter="10" class="mb8" type="flex" justify="center" style="text-align: center"> <el-col :span="1.5"> <el-button plain :disabled="buttondisabled" type="primary" style="width:400px;height:160px" v-hasPermi="['bs:formula:add']" @click="forceOnline"> - <span class="el-icon-thumb" style="font-size:45px;color:black"></span> + <span class="el-icon-thumb" style="font-size:40px;color:black"></span> <span style="font-size:45px;color:black"><strong>寮哄埗涓婄嚎</strong></span> </el-button> </el-col> @@ -62,17 +53,17 @@ </el-card> </el-col> - <el-col :span="14" inline style="height:600px;width:850px "> + <el-col :span="10" inline > <el-tabs type="border-card" > <el-card> - <el-col :span="14"style="height: 270px;width:800px "> + <el-col :span="14"style="height: 248px;width:800px "> <span style="font-size:25px"><strong>璐ㄩ噺鐘舵��</strong></span> <el-divider></el-divider> {{this.form.engineCheckList}} </el-col> </el-card> <el-card style="margin-top: 10px" > - <el-col :span="14"style="height: 270px;width:800px "> + <el-col :span="14"style="height: 248px;width:800px "> <span style="font-size:25px"><strong>鏈�缁堢粨鏋�</strong></span> <el-divider></el-divider> {{queryParams.productType}} @@ -163,8 +154,17 @@ else{ this.reset(); this.buttondisabled = true - this.$modal.msgError('杈撳叆鐨勫彂鍔ㄦ満鍙锋湁璇�'); - } + const h = this.$createElement; + this.$message({ + message: h('p',null, [ + h('span', null, '璀﹀憡 '), + h('i', { style: 'color: black' }, '杈撳叆鐨勫彂鍔ㄦ満鍙锋湁璇�'), + h()]), + type: 'error', + center: true, + offset:300 + }); + } }); let PassingStationCollectionParam = {sfcCode: null} PassingStationCollectionParam.sfcCode = this.form.engineNo; @@ -197,4 +197,10 @@ line-height: 50px; } +/*.my-custom-modal .el-dialog__wrapper {*/ +/* width: 400px; !* 璁剧疆瀹藉害 *!*/ +/* height: 200px; !* 璁剧疆楂樺害 *!*/ +/* top: 50px; !* 璁剧疆璺濈椤甸潰椤堕儴鐨勪綅缃� *!*/ +/* left: 50px; !* 璁剧疆璺濈椤甸潰宸︿晶鐨勪綅缃� *!*/ +/*}*/ </style> -- Gitblit v1.9.3