From 092ee93f1b3cca41d230dd2d40504bb7be4f9c32 Mon Sep 17 00:00:00 2001 From: kongdeqiang <123456> Date: 星期四, 30 三月 2023 17:08:50 +0800 Subject: [PATCH] 修改前端页面 --- src/components/page/Index2.vue | 23 +++++++++++++---------- 1 files changed, 13 insertions(+), 10 deletions(-) diff --git a/src/components/page/Index2.vue b/src/components/page/Index2.vue index fa4cf23..8525186 100644 --- a/src/components/page/Index2.vue +++ b/src/components/page/Index2.vue @@ -24,7 +24,7 @@ {{this.statisticData.createTime}} </el-form-item> <el-form-item label="鍋滅暀鏃堕棿" style="margin-left: 25px;"> - {{this.statisticData.time}}鍒嗛挓 + {{this.statisticData.timeStr}}鍒嗛挓 </el-form-item> <el-form-item label="浣嶇疆" style="margin-left: 25px;"> {{this.statisticData.parkName}} @@ -34,7 +34,7 @@ <!--<el-input v-model="statisticData.code" readonly></el-input>--> </el-form-item> <el-form-item style="display: flex;justify-content: center;margin-top: 4.498vh" label-width="0" v-show="showFlag"> - <el-button class="jiaofei-btn" type="primary" @click="pay()">鍘荤即璐�</el-button> + <el-button class="jiaofei-btn" type="primary" @click="pay()" :loading="payFlag">鍘荤即璐�</el-button> </el-form-item> </el-form> <el-form label-width="100px" label-position="left"> @@ -59,6 +59,7 @@ name: 'dashboard', data() { return { + payFlag:false, outParkId:"", statisticData:{ @@ -81,9 +82,10 @@ //this.outParkId = cs.code; this.code2 = cs.code; this.$byutil.postData(this, this.$systemconfig.basePath + '/outPark/findByBarrierCode', {code:cs.code}, res => { - this.statisticData = res.obj; + this.statisticData = res.data; this.outParkId = this.statisticData.id; this.status3 = this.statisticData.status3; + this.payFlag = false if(this.status3==1){ this.$message({ message: '鎮ㄦ湁杩濈珷鏈鐞嗭紝璇峰厛澶勭悊鎴栬仈绯诲仠杞﹀満绠$悊浜哄憳', @@ -95,21 +97,22 @@ }, methods: { pay(){ + this.payFlag = true; if(this.status3==1){ this.$message({ message: '鎮ㄦ湁杩濈珷鏈鐞嗭紝璇峰厛澶勭悊鎴栬仈绯诲仠杞﹀満绠$悊浜哄憳', type: 'error', - duration:5000, + duration:3000, }); return; } this.$byutil.postData(this, this.$systemconfig.basePath + '/ffPay/park', {id:this.outParkId}, res => { this.$message({ - message: '10绉掑悗鑷姩璺宠浆鍒版敮浠橀〉闈紝闃叉鍐呭缃戞暟鎹悓姝ュ欢杩燂紝璇风◢绛�', + message: '2绉掑悗鑷姩璺宠浆鍒版敮浠橀〉闈紝闃叉鍐呭缃戞暟鎹悓姝ュ欢杩燂紝璇风◢绛�', type: 'success', - duration:10000, + duration:2000, }); - setTimeout(function(){window.location.href = res.obj;},10000); + setTimeout(function(){window.location.href = res.msg;},2000); this.showFlag = false; }) }, @@ -117,12 +120,12 @@ if(this.carNo){ this.$byutil.postData(this, this.$systemconfig.basePath + '/outPark/outPark2', {code2:this.code2,carNo:this.carNo}, res => { if(res.success){ - this.outParkId = res.obj.id; + this.outParkId = res.data.id; this.pay(); this.showFlag = false; }else{ this.$message({ - message: res.message, type: 'error', duration:2000, + message: res.msg, type: 'error', duration:2000, }); } @@ -135,7 +138,7 @@ }); } - } + }, } } -- Gitblit v1.9.1